btrfs-progs/tests/fuzz-tests/002-simple-image/test.sh
David Sterba a855717a87 btrfs-progs: tests: remove trivial use of local variables
No need to use a temporary variable if the parameter usage is obvious
from the context.

Signed-off-by: David Sterba <dsterba@suse.com>
2018-03-30 22:15:55 +02:00

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