diff --git a/docs/reproducing.md b/docs/reproducing.md index cb565f0fc..c665b0880 100644 --- a/docs/reproducing.md +++ b/docs/reproducing.md @@ -13,9 +13,9 @@ This file contains the bytes that were fed to the [Fuzz Target](http://libfuzzer If you have already [integrated](ideal_integration.md) the fuzz target with your build and test system, all you do is run: -
-./fuzz_target_binary <testcase_path> -+```bash +$ ./fuzz_target_binary
- python infra/helper.py reproduce $PROJECT_NAME <fuzzer_name> <testcase_path> -+```bash +$ python infra/helper.py reproduce $PROJECT_NAME
-python infra/helper.py reproduce libxml2 libxml2_xml_read_memory_fuzzer ~/Downloads/testcase -+ +```bash +$ python infra/helper.py reproduce libxml2 libxml2_xml_read_memory_fuzzer ~/Downloads/testcase +``` + - *Reproduce using local source checkout:* -
-python infra/helper.py build_fuzzers $PROJECT_NAME <source_path> -python infra/helper.py reproduce $PROJECT_NAME <fuzzer_name> <testcase_path> -- +```bash +$ python infra/helper.py build_fuzzers $PROJECT_NAME