aboutsummaryrefslogtreecommitdiff
path: root/docs/getting-started
diff options
context:
space:
mode:
authorAbhishek Arya <inferno@chromium.org>2020-11-30 13:26:33 -0800
committerGitHub <noreply@github.com>2020-11-30 13:26:33 -0800
commitb4dd4b91de3296cc414a540f52f3ff310edf6c54 (patch)
treee1af9f197bea61c2300d84008d74a049ca1139a3 /docs/getting-started
parenta75169f0d035c4dbffe2f8440ef05da4c42b7b84 (diff)
downloadoss-fuzz-b4dd4b91de3296cc414a540f52f3ff310edf6c54.tar.gz
Enable UBSan for python projects. (#4757)
* Enable UBSan for python projects. * Update docs.
Diffstat (limited to 'docs/getting-started')
-rw-r--r--docs/getting-started/new-project-guide/python_lang.md10
1 files changed, 6 insertions, 4 deletions
diff --git a/docs/getting-started/new-project-guide/python_lang.md b/docs/getting-started/new-project-guide/python_lang.md
index 5bc01d903..f42d2740a 100644
--- a/docs/getting-started/new-project-guide/python_lang.md
+++ b/docs/getting-started/new-project-guide/python_lang.md
@@ -42,14 +42,16 @@ The `language` attribute must be specified.
language: python
```
-The only supported fuzzing engine and sanitizer are `libfuzzer` and `address`,
-respectively.
+The only supported fuzzing engine is libFuzzer (`libfuzzer`). The supported
+sanitizers are AddressSanitizer (`address`) and
+UndefinedBehaviorSanitizer (`undefined`). These must be explicitly specified.
```yaml
-sanitizers:
- - address
fuzzing_engines:
- libfuzzer
+sanitizers:
+ - address
+ - undefined
```
### Dockerfile