summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRyan Moeller <[email protected]>2020-08-22 14:05:59 -0400
committerGitHub <[email protected]>2020-08-22 11:05:59 -0700
commit72eedb69fd8a15ea2b6ac3ef2fa322210dd42f6c (patch)
tree80aa4d1a3de44cb266f4b15069bd1cea44db5941
parenta5b1b60e9b3a6f9bfbc8ce2acbf3238ccc3830a0 (diff)
ZTS: Remove leftover variable names
These were overlooked when use of `local` was removed to satisfy checkbashisms. Reviewed-by: Richard Laager <[email protected]> Reviewed-by: Brian Behlendorf <[email protected]> Signed-off-by: Ryan Moeller <[email protected]> Closes #10762
-rwxr-xr-xscripts/zfs-tests.sh3
1 files changed, 0 insertions, 3 deletions
diff --git a/scripts/zfs-tests.sh b/scripts/zfs-tests.sh
index 004d0cbf3..ae9276911 100755
--- a/scripts/zfs-tests.sh
+++ b/scripts/zfs-tests.sh
@@ -142,15 +142,12 @@ trap cleanup EXIT
# be dangerous and should only be used in a dedicated test environment.
#
cleanup_all() {
- TEST_POOLS
TEST_POOLS=$(sudo "$ZPOOL" list -H -o name | grep testpool)
- TEST_LOOPBACKS
if [ "$UNAME" = "FreeBSD" ] ; then
TEST_LOOPBACKS=$(sudo "${LOSETUP}" -l)
else
TEST_LOOPBACKS=$(sudo "${LOSETUP}" -a|grep file-vdev|cut -f1 -d:)
fi
- TEST_FILES
TEST_FILES=$(ls /var/tmp/file-vdev* 2>/dev/null)
msg