summaryrefslogtreecommitdiff
path: root/tests/fuzz-tests/002-simple-image/test.sh
blob: 034fcf4624b4fa89dc34744f3b393b893465aea5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/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() {
	local image

	image=$1
	truncate -s0 target
	run_mayfail $TOP/btrfs-image "$image" target
	truncate -s0 target
}

check_all_images $TEST_TOP/fuzz-tests/images

rm -- target

exit 0