btrfs-progs: tests: rename test 001 to mention check
[platform/upstream/btrfs-progs.git] / tests / fuzz-tests / 001-simple-check-unmounted / test.sh
1 #!/bin/bash
2
3 # iterate over all fuzzed images and run 'btrfs check'
4
5 source $TOP/tests/common
6
7 setup_root_helper
8 check_prereq btrfs
9
10 # redefine the one provided by common
11 check_image() {
12         local image
13
14         image=$1
15         run_mayfail $TOP/btrfs check "$image"
16 }
17
18 check_all_images $TOP/tests/fuzz-tests/images
19
20 exit 0