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>
This commit is contained in:
parent
4e4c5d3549
commit
17538334e1
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
# In order to confirm that btrfsck supports to check a variety of refs, add the
|
# In order to confirm that 'btrfs check' supports checking a variety of refs,
|
||||||
# following cases:
|
# add the following cases:
|
||||||
#
|
#
|
||||||
# * keyed_block_ref
|
# * keyed_block_ref
|
||||||
# * keyed_data_ref
|
# * keyed_data_ref
|
||||||
|
@ -19,12 +19,11 @@ source "$TOP/tests/common"
|
||||||
|
|
||||||
check_prereq btrfs
|
check_prereq btrfs
|
||||||
|
|
||||||
for img in *.img *.raw.xz
|
check_image() {
|
||||||
do
|
local image
|
||||||
image=$(extract_image "$img")
|
|
||||||
|
|
||||||
# Since the return value bug is already fixed, we don't need
|
image=$1
|
||||||
# the old grep hack to detect bug.
|
|
||||||
run_check "$TOP/btrfs" check "$image"
|
run_check "$TOP/btrfs" check "$image"
|
||||||
rm -f "$image"
|
}
|
||||||
done
|
|
||||||
|
check_all_images
|
||||||
|
|
Loading…
Reference in New Issue