summaryrefslogtreecommitdiff
path: root/tests/fsck-tests/020-extent-ref-cases/test.sh
diff options
context:
space:
mode:
authorLu Fengqi <lufq.fnst@cn.fujitsu.com>2016-05-30 10:58:13 +0800
committerDavid Sterba <dsterba@suse.com>2016-06-01 14:56:56 +0200
commit9071a102102f26c2e83932be1906e628eae4cb73 (patch)
tree4d9ed67a1afdce0bcf8fa955cb050d8797fad68c /tests/fsck-tests/020-extent-ref-cases/test.sh
parent57744bd1d266fe790e273d4e48aa0b4a4be31f7e (diff)
btrfs-progs: tests: add 020-extent-ref-cases
In order to confirm that btrfsck supports to check a variety of refs, add the following cases: * keyed_block_ref * keyed_data_ref * shared_block_ref * shared_data_ref * no_inline_ref (a extent item without inline ref) * no_skinny_ref Signed-off-by: Lu Fengqi <lufq.fnst@cn.fujitsu.com> Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'tests/fsck-tests/020-extent-ref-cases/test.sh')
-rwxr-xr-xtests/fsck-tests/020-extent-ref-cases/test.sh23
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/fsck-tests/020-extent-ref-cases/test.sh b/tests/fsck-tests/020-extent-ref-cases/test.sh
new file mode 100755
index 00000000..c2b6a006
--- /dev/null
+++ b/tests/fsck-tests/020-extent-ref-cases/test.sh
@@ -0,0 +1,23 @@
+#!/bin/bash
+# In order to confirm that btrfsck supports to check a variety of refs, add the
+# following cases:
+#
+# * keyed_block_ref
+# * keyed_data_ref
+# * shared_block_ref
+# * shared_data_ref
+# * no_inline_ref (a extent item without inline ref)
+# * no_skinny_ref
+
+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" &&
+ _fail "unexpected error occurred when checking $img"
+ rm -f "$image"
+done