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
390 B
Bash
Executable File
20 lines
390 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Verify that check can detect overlapped csum items
|
|
#
|
|
# There is one report of overlap csum items, causing tree-checker to reject
|
|
# the csum tree.
|
|
#
|
|
# Make sure btrfs check can at least detect such error
|
|
|
|
source "$TEST_TOP/common" || exit
|
|
|
|
check_prereq btrfs
|
|
|
|
check_image() {
|
|
run_mustfail "overlapping csum item not detected" \
|
|
"$TOP/btrfs" check "$1"
|
|
}
|
|
|
|
check_all_images
|