mirror of
https://github.com/kdave/btrfs-progs
synced 2024-12-24 23:22:27 +00:00
5f77daa6a1
To test if fsck can check detec "leaf crossing stripes". This function was introduced from patch titled: btrfs-progs: fsck: Check if a metadata tree block crossing stripe boundary Signed-off-by: Zhao Lei <zhaolei@cn.fujitsu.com> [renamed and other minor changes] Signed-off-by: David Sterba <dsterba@suse.com>
13 lines
260 B
Bash
Executable File
13 lines
260 B
Bash
Executable File
#!/bin/bash
|
|
|
|
source $TOP/tests/common
|
|
|
|
check_prereq btrfs
|
|
|
|
image=$(extract_image "./default_case.raw.xz")
|
|
run_check_stdout $TOP/btrfs check "$image" 2>&1 |
|
|
grep -q "crossing stripe boundary" ||
|
|
_fail "no expected error message in the output"
|
|
|
|
rm -f "$image"
|