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>
23 lines
353 B
Bash
Executable File
23 lines
353 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# iterate over all fuzzed images and run 'btrfs-image'
|
|
|
|
source "$TEST_TOP/common"
|
|
|
|
check_prereq btrfs-image
|
|
|
|
setup_root_helper
|
|
|
|
# redefine the one provided by common
|
|
check_image() {
|
|
truncate -s0 target
|
|
run_mayfail "$TOP/btrfs-image" "$1" target
|
|
truncate -s0 target
|
|
}
|
|
|
|
check_all_images "$TEST_TOP/fuzz-tests/images"
|
|
|
|
rm -- target
|
|
|
|
exit 0
|