ZTS: Add missing quotes

`default_setup` takes a disk list as the first argument and has
optional additional arguments that control secondary functionality.
A couple of test setups mistakenly call `default_setup $DISKS`.

Add quotes so the second and subsequent disks are correctly included
in the pool as vdevs rather than triggering unwanted behavior from
`default_setup`.

Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Reviewed-by: John Kennedy <john.kennedy@delphix.com>
Signed-off-by: Ryan Moeller <ryan@iXsystems.com>
Closes #10097
This commit is contained in:
Brian Behlendorf 2020-03-04 15:10:45 -08:00 committed by GitHub
parent 4b06d05298
commit fa23c5be88
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -39,4 +39,4 @@ else
log_note "This machine is running ZFS Filesystem version $ZFS_VERSION"
fi
default_setup $DISKS
default_setup "$DISKS"

View File

@ -33,4 +33,4 @@
verify_runnable "global"
default_setup $DISKS
default_setup "$DISKS"