summaryrefslogtreecommitdiff
path: root/fuzz
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2024-02-12 15:02:23 -0800
committerGitHub <noreply@github.com>2024-02-12 15:02:23 -0800
commit88fe1b68e9e0eaec4b35336ed35c7ea44a762204 (patch)
tree9cc33e929dec5d8b131abd52f20eebc3baa390be /fuzz
parent1948008a8c7ceca1ca278e76bdca72eebba0dae7 (diff)
downloadbinaryen-88fe1b68e9e0eaec4b35336ed35c7ea44a762204.tar.gz
binaryen-88fe1b68e9e0eaec4b35336ed35c7ea44a762204.tar.bz2
binaryen-88fe1b68e9e0eaec4b35336ed35c7ea44a762204.zip
Fuzzer: Use a directory for important fuzz testcases (#6297)
Users can put files in ./fuzz and they will be fuzzed with high priority. Docs in source and https://github.com/WebAssembly/binaryen/wiki/Fuzzing#helper-scripts
Diffstat (limited to 'fuzz')
-rw-r--r--fuzz/readme.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/fuzz/readme.txt b/fuzz/readme.txt
new file mode 100644
index 000000000..54df3bd12
--- /dev/null
+++ b/fuzz/readme.txt
@@ -0,0 +1,3 @@
+The wasm contents of this directory (*.wasm, *.wast, *.wat files) are treated as
+important contents by the fuzzer, which will test them with high frequency. This
+is useful when you have some local files you want the fuzzer to focus on.