aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Abhishek Arya <inferno@chromium.org>2019-08-19 16:14:15 -0700
committerGravatar GitHub <noreply@github.com>2019-08-19 16:14:15 -0700
commita846f976b0a6434c9f26f632a1bf5316b62d41c5 (patch)
tree9631dd1e6e876045eae700d3366787c748f7f79e
parentc88eb977f89c96722e172f5c12ef8f5a5f962827 (diff)
Update reproducing.md
-rw-r--r--docs/advanced-topics/reproducing.md13
1 files changed, 7 insertions, 6 deletions
diff --git a/docs/advanced-topics/reproducing.md b/docs/advanced-topics/reproducing.md
index 10acda97..6147260f 100644
--- a/docs/advanced-topics/reproducing.md
+++ b/docs/advanced-topics/reproducing.md
@@ -66,10 +66,11 @@ $ python infra/helper.py pull_images
```bash
$ python infra/helper.py build_image $PROJECT_NAME
-$ python infra/helper.py build_fuzzers --sanitizer <address/memory/undefined> --architecture <x86_64/i386> $PROJECT_NAME
+$ python infra/helper.py build_fuzzers --sanitizer <address/memory/undefined> \
+ --architecture <x86_64/i386> $PROJECT_NAME
```
-The `architecture` argument is only necessary if you want to specify `i386`.
+The `architecture` argument is only necessary if you want to specify `i386` configuration.
## Reproducing bugs
```bash
@@ -124,12 +125,12 @@ $ python infra/helper.py build_image $PROJECT_NAME
$ python infra/helper.py build_fuzzers --sanitizer <address/memory/undefined> \
--engine <libfuzzer/afl/honggfuzz> --architecture <x86_64/i386> $PROJECT_NAME
$ python infra/helper.py check_build --sanitizer <address/memory/undefined> \
- --engine <libfuzzer/afl/honggfuzz> --architecture <x86_64/i386> $PROJECT_NAME <fuzz_target_name>
+ --engine <libfuzzer/afl/honggfuzz> --architecture <x86_64/i386> $PROJECT_NAME \
+ <fuzz_target_name>
```
-
-Note that unless you have a reason to think the build is an i386 build, the build
-is probably an x86_64 build and the `architecture` argument can be omitted.
+Note that unless you have a reason to think the build is an `i386` build, the build
+is probably an `x86_64` build and the `architecture` argument can be omitted.
For reproducing a `coverage` build failure, follow
[Code Coverage page]({{ site.baseurl }}/advanced-topics/code-coverage) to build