summaryrefslogtreecommitdiffstats
path: root/Modules/_xxtestfuzz
diff options
context:
space:
mode:
Diffstat (limited to 'Modules/_xxtestfuzz')
-rw-r--r--Modules/_xxtestfuzz/README.rst8
1 files changed, 5 insertions, 3 deletions
diff --git a/Modules/_xxtestfuzz/README.rst b/Modules/_xxtestfuzz/README.rst
index b951858..68d5d58 100644
--- a/Modules/_xxtestfuzz/README.rst
+++ b/Modules/_xxtestfuzz/README.rst
@@ -23,7 +23,7 @@ Add the test name on a new line in ``fuzz_tests.txt``.
In ``fuzzer.c``, add a function to be run::
- int $test_name (const char* data, size_t size) {
+ static int $fuzz_test_name(const char* data, size_t size) {
...
return 0;
}
@@ -31,10 +31,12 @@ In ``fuzzer.c``, add a function to be run::
And invoke it from ``LLVMFuzzerTestOneInput``::
- #if _Py_FUZZ_YES(fuzz_builtin_float)
- rv |= _run_fuzz(data, size, fuzz_builtin_float);
+ #if !defined(_Py_FUZZ_ONE) || defined(_Py_FUZZ_$fuzz_test_name)
+ rv |= _run_fuzz(data, size, $fuzz_test_name);
#endif
+Don't forget to replace ``$fuzz_test_name`` with your actual test name.
+
``LLVMFuzzerTestOneInput`` will run in oss-fuzz, with each test in
``fuzz_tests.txt`` run separately.