3 # loop through all of our bad images and make sure fsck repairs them properly
5 # It's GPL, same as everything else in this tree.
11 SCRIPT_DIR=$(dirname $(readlink -f $0))
12 TOP=$(readlink -f $SCRIPT_DIR/../)
13 TEST_DEV=${TEST_DEV:-}
14 TEST_MNT=${TEST_MNT:-$TOP/tests/mnt}
15 RESULTS="$TOP/tests/fsck-tests-results.txt"
17 source $TOP/tests/common
19 # Allow child test to use $TOP and $RESULTS
22 # For custom script needs to verfiy recovery
27 mkdir -p $TEST_MNT || _fail "unable to create mount point on $TEST_MNT"
29 # test rely on corrupting blocks tool
30 check_prereq btrfs-corrupt-block
31 check_prereq btrfs-image
38 echo " [TEST] $(basename $testname)"
40 echo "=== Entering $testname" >> $RESULTS
41 if [ -x test.sh ]; then
45 _fail "test failed for case $(basename $testname)"
49 check_all_images `pwd`
54 # Each dir contains one type of error for btrfsck test.
55 # Each dir must be one of the following 2 types:
56 # 1) Only btrfs-image dump
57 # Only contains one or several btrfs-image dumps (.img)
58 # Each image will be tested by generic test routine
59 # (btrfsck --repair and btrfsck).
60 # This is for case that btree-healthy images.
61 # 2) Custom test script
62 # This dir contains test.sh which will do custom image
63 # generation/check/verification.
64 # This is for case btrfs-image can't dump or case needs extra
67 for i in $(find $TOP/tests/fsck-tests -maxdepth 1 -mindepth 1 -type d \
68 ${TEST:+-name "$TEST"} | sort)