gh-121023: Improve `_xxtestfuzz/README.rst` (#121024)

Co-authored-by: Illia Volochii <illia.volochii@gmail.com>
This commit is contained in:
sobolevn 2024-09-16 23:28:09 +03:00 committed by GitHub
parent 3b45df03a4
commit a9c2bc1634
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 3 deletions

View File

@ -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.