btrfs-progs: tests: add 021-partially-dropped-snapshot-case

Signed-off-by: Wang Xiaoguang <wangxg.fnst@cn.fujitsu.com>
Signed-off-by: David Sterba <dsterba@suse.com>
master
Wang Xiaoguang 2016-08-25 13:21:01 +08:00 committed by David Sterba
parent ac80fca06c
commit f9309584bf
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
#!/bin/bash
# confirm whether btrfsck supports to check a partially dropped snapshot
source $TOP/tests/common
check_prereq btrfs
for img in *.img
do
image=$(extract_image $img)
run_check_stdout $TOP/btrfs check "$image" 2>&1 |
grep -q "Errors found in extent allocation tree or chunk allocation"
if [ $? -eq 0 ]; then
rm -f "$image"
_fail "unexpected error occurred when checking $img"
fi
rm -f "$image"
done