btrfs-progs: tests: add 021-partially-dropped-snapshot-case
authorWang Xiaoguang <wangxg.fnst@cn.fujitsu.com>
Thu, 25 Aug 2016 05:21:01 +0000 (13:21 +0800)
committerDavid Sterba <dsterba@suse.com>
Wed, 21 Sep 2016 09:50:01 +0000 (11:50 +0200)
Signed-off-by: Wang Xiaoguang <wangxg.fnst@cn.fujitsu.com>
Signed-off-by: David Sterba <dsterba@suse.com>
tests/fsck-tests/021-partially-dropped-snapshot-case/dropped-snapshot.img [new file with mode: 0644]
tests/fsck-tests/021-partially-dropped-snapshot-case/test.sh [new file with mode: 0755]

diff --git a/tests/fsck-tests/021-partially-dropped-snapshot-case/dropped-snapshot.img b/tests/fsck-tests/021-partially-dropped-snapshot-case/dropped-snapshot.img
new file mode 100644 (file)
index 0000000..345ef41
Binary files /dev/null and b/tests/fsck-tests/021-partially-dropped-snapshot-case/dropped-snapshot.img differ
diff --git a/tests/fsck-tests/021-partially-dropped-snapshot-case/test.sh b/tests/fsck-tests/021-partially-dropped-snapshot-case/test.sh
new file mode 100755 (executable)
index 0000000..eb8d884
--- /dev/null
@@ -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