mirror of https://github.com/python/cpython
gh-121023: Improve `_xxtestfuzz/README.rst` (#121024)
Co-authored-by: Illia Volochii <illia.volochii@gmail.com>
This commit is contained in:
parent
3b45df03a4
commit
a9c2bc1634
|
@ -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::
|
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;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -31,10 +31,12 @@ In ``fuzzer.c``, add a function to be run::
|
||||||
|
|
||||||
And invoke it from ``LLVMFuzzerTestOneInput``::
|
And invoke it from ``LLVMFuzzerTestOneInput``::
|
||||||
|
|
||||||
#if _Py_FUZZ_YES(fuzz_builtin_float)
|
#if !defined(_Py_FUZZ_ONE) || defined(_Py_FUZZ_$fuzz_test_name)
|
||||||
rv |= _run_fuzz(data, size, fuzz_builtin_float);
|
rv |= _run_fuzz(data, size, $fuzz_test_name);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Don't forget to replace ``$fuzz_test_name`` with your actual test name.
|
||||||
|
|
||||||
``LLVMFuzzerTestOneInput`` will run in oss-fuzz, with each test in
|
``LLVMFuzzerTestOneInput`` will run in oss-fuzz, with each test in
|
||||||
``fuzz_tests.txt`` run separately.
|
``fuzz_tests.txt`` run separately.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue