From b81abc8bb971cb3f83f6eaa377b774c33ca794b8 Mon Sep 17 00:00:00 2001 From: Mike Aizatsky Date: Thu, 29 Dec 2016 14:32:42 -0800 Subject: [PATCH] Update reference.md --- docs/reference.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/reference.md b/docs/reference.md index 5e83612fe..32734ba45 100644 --- a/docs/reference.md +++ b/docs/reference.md @@ -3,20 +3,12 @@ ## Sanitizers Fuzzers are usualy built with one or more [sanitizer](https://github.com/google/sanitizers) enabled. -You can select a sanitizer while by specifying `$SANITIZER` build environment varible using `-e` option: +You can select sanitizer configuration by specifying `$SANITIZER` build environment varible using `-e` option: ```bash python infra/helper.py build_fuzzers -e SANITIZER=undefined json ``` -You can choose which configurations to automatically run your fuzzers with in `project.yaml` file ([sqlite3](../../../projects/sqlite3/project.yaml)): - -```yaml -sanitizers: - - address - - undefined - ``` - Supported sanitizers: | `$SANITIZER` | Description @@ -28,3 +20,11 @@ Supported sanitizers: Compiler flag values for predefined configurations are specified in [Dockerfile](Dockerfile). These flags can be overriden by specifying `$SANITIZER_FLAGS` directly. +You can choose which configurations to automatically run your fuzzers with in `project.yaml` file ([sqlite3](../../../projects/sqlite3/project.yaml)): + +```yaml +sanitizers: + - address + - undefined + ``` +