summaryrefslogtreecommitdiff
path: root/tests/fuzz-tests/002-simple-image/test.sh
blob: 42470eccbb0b0c58b2c98d63464f8577ad056ed2 (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 $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