summaryrefslogtreecommitdiff
path: root/tests/fsck-tests.sh
diff options
context:
space:
mode:
authorDavid Sterba <dsterba@suse.com>2016-06-03 16:01:51 +0200
committerDavid Sterba <dsterba@suse.com>2016-06-03 16:53:27 +0200
commite5f80994640df9abdb181c6db1513d8de744c73c (patch)
treeba5db8d8b75559a4d57e51ca661a635006248da4 /tests/fsck-tests.sh
parentb5ab8d42b71ce06d9fcfbcc0f65f6c388d6b28f1 (diff)
btrfs-progs: tests: unify test drivers
Remove unnecessary code, add exports to all common variables. Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'tests/fsck-tests.sh')
-rwxr-xr-xtests/fsck-tests.sh10
1 files changed, 3 insertions, 7 deletions
diff --git a/tests/fsck-tests.sh b/tests/fsck-tests.sh
index fb861635..d1cd7329 100755
--- a/tests/fsck-tests.sh
+++ b/tests/fsck-tests.sh
@@ -1,25 +1,21 @@
#!/bin/bash
#
# loop through all of our bad images and make sure fsck repairs them properly
-#
-# It's GPL, same as everything else in this tree.
-#
-unset TOP
-unset LANG
LANG=C
SCRIPT_DIR=$(dirname $(readlink -f $0))
TOP=$(readlink -f $SCRIPT_DIR/../)
TEST_DEV=${TEST_DEV:-}
RESULTS="$TOP/tests/fsck-tests-results.txt"
+IMAGE="$TOP/tests/test.img"
source $TOP/tests/common
-# Allow child test to use $TOP and $RESULTS
export TOP
export RESULTS
-# For custom script needs to verify recovery
export LANG
+export IMAGE
+export TEST_DEV
rm -f $RESULTS