From b4dd4b91de3296cc414a540f52f3ff310edf6c54 Mon Sep 17 00:00:00 2001 From: Abhishek Arya Date: Mon, 30 Nov 2020 13:26:33 -0800 Subject: Enable UBSan for python projects. (#4757) * Enable UBSan for python projects. * Update docs. --- docs/getting-started/new-project-guide/python_lang.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'docs/getting-started') 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 -- cgit v1.2.3