mirror of
https://github.com/kdave/btrfs-progs
synced 2025-02-16 17:56:51 +00:00
btrfs-progs: test/fsck/021: Cleanup custom check by overriding check_image
Signed-off-by: Qu Wenruo <wqu@suse.com> [ update comment ] Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
17538334e1
commit
37c737d7cb
@ -1,18 +1,22 @@
|
||||
#!/bin/bash
|
||||
# confirm whether btrfsck supports to check a partially dropped snapshot
|
||||
# confirm whether 'btrfs check' supports check ing of a partially dropped
|
||||
# snapshot
|
||||
|
||||
source "$TOP/tests/common"
|
||||
|
||||
check_prereq btrfs
|
||||
|
||||
for img in *.img
|
||||
do
|
||||
image=$(extract_image "$img")
|
||||
check_image()
|
||||
{
|
||||
local image
|
||||
|
||||
image=$1
|
||||
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
|
||||
}
|
||||
|
||||
check_all_images
|
||||
|
Loading…
Reference in New Issue
Block a user