mirror of
https://github.com/kdave/btrfs-progs
synced 2025-02-16 09:46:55 +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>
24 lines
617 B
Bash
Executable File
24 lines
617 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# $ btrfs check img
|
|
# Checking filesystem on img
|
|
# UUID: 17f2bf15-f4c2-4ebc-b1f7-39b7af26257a
|
|
# checking extents
|
|
# bad extent [29376512, 29392896), type mismatch with chunk
|
|
# bad extent [29442048, 29458432), type mismatch with chunk
|
|
# bad extent [29589504, 29605888), type mismatch with chunk
|
|
# ...
|
|
#
|
|
# a buggy check leads to the above messages
|
|
|
|
source "$TEST_TOP/common" || exit
|
|
|
|
check_prereq btrfs
|
|
|
|
image=$(extract_image "./default_case.img.xz")
|
|
run_check_stdout "$TOP/btrfs" check "$image" 2>&1 |
|
|
grep -q "type mismatch with chunk" &&
|
|
_fail "unexpected error message in the output"
|
|
|
|
rm -f "$image"
|