summaryrefslogtreecommitdiff
path: root/tests/fsck-tests/020-extent-ref-cases/test.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/fsck-tests/020-extent-ref-cases/test.sh')
-rwxr-xr-xtests/fsck-tests/020-extent-ref-cases/test.sh19
1 files changed, 13 insertions, 6 deletions
diff --git a/tests/fsck-tests/020-extent-ref-cases/test.sh b/tests/fsck-tests/020-extent-ref-cases/test.sh
index c2b6a006..1e1e4e23 100755
--- a/tests/fsck-tests/020-extent-ref-cases/test.sh
+++ b/tests/fsck-tests/020-extent-ref-cases/test.sh
@@ -8,16 +8,23 @@
# * shared_data_ref
# * no_inline_ref (a extent item without inline ref)
# * no_skinny_ref
+#
+# Special check for lowmem regression
+# * block_group_item_false_alert
+# Containing a block group and its first extent at
+# the beginning of leaf.
+# Which caused false alert for lowmem mode.
-source $TOP/tests/common
+source "$TOP/tests/common"
check_prereq btrfs
-for img in *.img
+for img in *.img *.raw.xz
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"
+ image=$(extract_image "$img")
+
+ # Since the return value bug is already fixed, we don't need
+ # the old grep hack to detect bug.
+ run_check "$TOP/btrfs" check "$image"
rm -f "$image"
done