mirror of
https://github.com/kdave/btrfs-progs
synced 2024-12-13 09:57:03 +00:00
107adbd05d
If a testcase failed, we can't run it(or other tests needs mount) again, # ./misc-tests.sh 007 [TEST] 007-subvolume-sync failed: fail test failed for case 007-subvolume-sync # ./misc-tests.sh 007 [TEST] 007-subvolume-sync failed: mount /root/btrfs-progs/tests/test.img /root/btrfs-progs/tests/mnt test failed for case 007-subvolume-sync This patch add "umount $TEST_MNT" to clean-tests.sh, to let user clean mountpoint easily. After patch: # ./misc-tests.sh 007 [TEST] 007-subvolume-sync failed: fail test failed for case 007-subvolume-sync # # clean-tests.sh # # ./misc-tests.sh 007 [TEST] 007-subvolume-sync failed: fail test failed for case 007-subvolume-sync Suggested-by: David Sterba <dsterba@suse.cz> Signed-off-by: Zhao Lei <zhaolei@cn.fujitsu.com> [added sudo helper to umount] Signed-off-by: David Sterba <dsterba@suse.com>
25 lines
490 B
Bash
Executable File
25 lines
490 B
Bash
Executable File
#!/bin/sh
|
|
# remove all intermediate files from tests
|
|
|
|
SCRIPT_DIR=$(dirname $(readlink -f $0))
|
|
TOP=$(readlink -f $SCRIPT_DIR/../)
|
|
source $TOP/tests/common
|
|
|
|
setup_root_helper
|
|
|
|
if [ "$BUILD_VERBOSE" = 1 ]; then
|
|
verbose=-print
|
|
fi
|
|
|
|
$SUDO_HELPER umount "$TEST_MNT" &>/dev/null
|
|
|
|
if ! cd $TOP/tests; then
|
|
echo "ERROR: cannot cd to $TOP/tests"
|
|
exit 1
|
|
fi
|
|
|
|
find fsck-tests -type f -name '*.restored' $verbose -delete
|
|
|
|
# do not remove, the file could have special permissions set
|
|
echo -n > test.img
|