summaryrefslogtreecommitdiff
path: root/tests/fsck-tests
diff options
context:
space:
mode:
authorQu Wenruo <wqu@suse.com>2017-11-10 09:34:18 +0800
committerDavid Sterba <dsterba@suse.com>2018-01-03 17:09:49 +0100
commit17538334e17f9f84faf458157c12c3b548738492 (patch)
treedf20848858ff12fdf22ea6bc07ebcc773c1b9fdb /tests/fsck-tests
parent4e4c5d354912b2e8adaf4c64bfee00b1bdc420af (diff)
btrfs-progs: test/fsck/020: Cleanup custom check function by overriding check_image function
Signed-off-by: Qu Wenruo <wqu@suse.com> Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'tests/fsck-tests')
-rwxr-xr-xtests/fsck-tests/020-extent-ref-cases/test.sh17
1 files changed, 8 insertions, 9 deletions
diff --git a/tests/fsck-tests/020-extent-ref-cases/test.sh b/tests/fsck-tests/020-extent-ref-cases/test.sh
index 1e1e4e23..0c4f7848 100755
--- a/tests/fsck-tests/020-extent-ref-cases/test.sh
+++ b/tests/fsck-tests/020-extent-ref-cases/test.sh
@@ -1,6 +1,6 @@
#!/bin/bash
-# In order to confirm that btrfsck supports to check a variety of refs, add the
-# following cases:
+# In order to confirm that 'btrfs check' supports checking a variety of refs,
+# add the following cases:
#
# * keyed_block_ref
# * keyed_data_ref
@@ -19,12 +19,11 @@ source "$TOP/tests/common"
check_prereq btrfs
-for img in *.img *.raw.xz
-do
- image=$(extract_image "$img")
+check_image() {
+ local image
- # Since the return value bug is already fixed, we don't need
- # the old grep hack to detect bug.
+ image=$1
run_check "$TOP/btrfs" check "$image"
- rm -f "$image"
-done
+}
+
+check_all_images