mirror of
https://github.com/kdave/btrfs-progs
synced 2025-01-21 21:12:55 +00:00
faaeee5bf3
Signed-off-by: David Sterba <dsterba@suse.com>
25 lines
376 B
Bash
Executable File
25 lines
376 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# iterate over all fuzzed images and run 'btrfs-image'
|
|
|
|
source $TOP/tests/common
|
|
|
|
setup_root_helper
|
|
check_prereq btrfs-image
|
|
|
|
# redefine the one provided by common
|
|
check_image() {
|
|
local image
|
|
|
|
image=$1
|
|
truncate -s0 target
|
|
run_mayfail $TOP/btrfs-image "$image" target
|
|
truncate -s0 target
|
|
}
|
|
|
|
check_all_images $TOP/tests/fuzz-tests/images
|
|
|
|
rm -- target
|
|
|
|
exit 0
|