mirror of
https://github.com/kdave/btrfs-progs
synced 2025-02-19 11:16:51 +00:00
Executing the script inside the directories as './test.sh' is not
supposed to work but could happen accidentally. With an exit after
attempting to source the we can fix that. Not all cases have been fixed
in f6bbe06c08
("btrfs-progs: tests: add protection against running
out of test suite").
Signed-off-by: David Sterba <dsterba@suse.com>
20 lines
354 B
Bash
Executable File
20 lines
354 B
Bash
Executable File
#!/bin/bash
|
|
# check whether btrfsck can detect running qgroup rescan
|
|
|
|
source "$TEST_TOP/common" || exit
|
|
|
|
check_prereq btrfs
|
|
|
|
check_image() {
|
|
local image
|
|
|
|
image=$1
|
|
run_check_stdout "$TOP/btrfs" check "$image" 2>&1 | \
|
|
grep -q "Counts for qgroup id"
|
|
if [ $? -eq 0 ]; then
|
|
_fail "Btrfs check doesn't detect rescan correctly"
|
|
fi
|
|
}
|
|
|
|
check_all_images
|