summaryrefslogtreecommitdiff
path: root/tests/fuzz-tests/001-simple-unmounted/test.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/fuzz-tests/001-simple-unmounted/test.sh')
-rwxr-xr-xtests/fuzz-tests/001-simple-unmounted/test.sh20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/fuzz-tests/001-simple-unmounted/test.sh b/tests/fuzz-tests/001-simple-unmounted/test.sh
new file mode 100755
index 00000000..bf01a3a4
--- /dev/null
+++ b/tests/fuzz-tests/001-simple-unmounted/test.sh
@@ -0,0 +1,20 @@
+#!/bin/sh
+
+# iterate over all fuzzed images and run 'btrfs check'
+
+source $TOP/tests/common
+
+setup_root_helper
+check_prereq btrfs
+
+# redefine the one provided by common
+check_image() {
+ local image
+
+ image=$1
+ run_mayfail $TOP/btrfs check "$image"
+}
+
+check_all_images $TOP/tests/fuzz-tests/images
+
+exit 0