mirror of
https://github.com/kdave/btrfs-progs
synced 2024-12-14 18:37:03 +00:00
36c136edd8
The prerequisites should be called before the root helper or device is setup, as preferred style. Signed-off-by: David Sterba <dsterba@suse.com>
22 lines
349 B
Bash
Executable File
22 lines
349 B
Bash
Executable File
#!/bin/bash
|
|
|
|
source "$TEST_TOP/common"
|
|
|
|
check_prereq btrfs
|
|
|
|
setup_root_helper
|
|
|
|
# redefine the one provided by common
|
|
check_image() {
|
|
local image
|
|
|
|
image=$1
|
|
run_check cp "$image" "$image".scratch
|
|
run_mayfail "$TOP/btrfs" rescue chunk-recover -y -v "$image".scratch
|
|
rm -- "$image".scratch
|
|
}
|
|
|
|
check_all_images "$TEST_TOP/fuzz-tests/images"
|
|
|
|
exit 0
|