mirror of
https://github.com/kdave/btrfs-progs
synced 2025-02-18 02:36:56 +00:00
No need to use a temporary variable if the parameter usage is obvious from the context. Signed-off-by: David Sterba <dsterba@suse.com>
22 lines
352 B
Bash
Executable File
22 lines
352 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# iterate over all fuzzed images and run 'btrfs-image'
|
|
|
|
source "$TEST_TOP/common"
|
|
|
|
setup_root_helper
|
|
check_prereq btrfs-image
|
|
|
|
# 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
|