Lines Matching +full:sanitizer +full:- +full:test
1 ---
7 ---
16 - TOC
18 ---
20 ## OSS-Fuzz specific terms
24 A scalable fuzzing infrastructure that is used for OSS-Fuzz backend.
28 [page]: {{ site.baseurl }}/further-reading/clusterfuzz
34 [general definition](https://github.com/google/fuzzing/blob/master/docs/glossary.md#fuzz-target),
35 in OSS-Fuzz a fuzz target can be used to
36 [reproduce bug reports]({{ site.baseurl }}/advanced-topics/reproducing/).
38 [ideal integration]({{ site.baseurl }}/advanced-topics/ideal-integration/)).
47 with a [sanitizer].
55 A project is an open source software project that is integrated with OSS-Fuzz.
57 (example: [expat](https://github.com/google/oss-fuzz/tree/master/projects/expat))
65 A [test input] that causes a specific bug to reproduce.
67 [fuzz targets]: https://github.com/google/fuzzing/blob/master/docs/glossary.md#fuzz-target
68 [fuzzing engine]: https://github.com/google/fuzzing/blob/master/docs/glossary.md#fuzzing-engine
69 [sanitizer]: https://github.com/google/fuzzing/blob/master/docs/glossary.md#sanitizer
70 [test input]: https://github.com/google/fuzzing/blob/master/docs/glossary.md#test-input
74 Fuzzers are usually built with one or more [sanitizer](https://github.com/google/sanitizers) enable…
77 $ python infra/helper.py build_fuzzers --sanitizer undefined json
82 | Sanitizer | Description
83 | ------------ | ----------
84 …ddress` *(default)* | [Address Sanitizer](https://github.com/google/sanitizers/wiki/AddressSanitiz…
85 | `undefined` | [Undefined Behavior Sanitizer](http://clang.llvm.org/docs/UndefinedBehaviorSanitize…
86 …Sanitizer](https://github.com/google/sanitizers/wiki/MemorySanitizer).<br/>*NOTE: It is critical t…
87 … code coverage reports. See [Code Coverage doc]({{ site.baseurl }}/advanced-topics/code-coverage/).
89 …cified in the [Dockerfile](https://github.com/google/oss-fuzz/blob/master/infra/base-images/base-b…
92 …rs with in `project.yaml` file (e.g. [sqlite3](https://github.com/google/oss-fuzz/tree/master/proj…
95 …it) by specifying the `$ARCHITECTURE` build environment variable using the `--architecture` option:
98 python infra/helper.py build_fuzzers --architecture i386 json