mirror of
https://github.com/kdave/btrfs-progs
synced 2024-12-23 14:45:19 +00:00
515ea7dc2f
In this test case, all name in dir_item, dir_index, inode_ref are corrupted to another one. btrfs check should report errors about the corrupted dir_item but btrfs can't repair the case now. Signed-off-by: Su Yue <suy.fnst@cn.fujitsu.com> Signed-off-by: David Sterba <dsterba@suse.com>
14 lines
270 B
Bash
Executable File
14 lines
270 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# confirm whether check detects name and hash mismatch in dir_item
|
|
|
|
source "$TOP/tests/common"
|
|
|
|
check_prereq btrfs
|
|
|
|
image=$(extract_image "./default_case.img.xz")
|
|
|
|
run_mustfail "dir_item hash mismatch not found" "$TOP/btrfs" check "$image"
|
|
|
|
rm -f "$image"
|