From b352eb1b8893fc0052b9c1a1b848f36419815548 Mon Sep 17 00:00:00 2001 From: Sergey Bronnikov Date: Thu, 25 May 2023 19:43:19 +0300 Subject: [PATCH] docs: add a list with available sanitizers (#10387) It is not clear what sanitizers could be specified in `sanitizers` field in project.yaml. Patch adds a list of available sanitizers to a "New project guide". --- docs/getting-started/new_project_guide.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/getting-started/new_project_guide.md b/docs/getting-started/new_project_guide.md index 99d2a1f8b..0917d4d5f 100644 --- a/docs/getting-started/new_project_guide.md +++ b/docs/getting-started/new_project_guide.md @@ -118,7 +118,8 @@ Any changes to this list must follow these rules: - An organization email address is used. ### sanitizers (optional) {#sanitizers} -The list of sanitizers to use. If you don't specify a list, `sanitizers` uses a default list of supported +The list of sanitizers to use. Possible values are: `address`, `memory` and `undefined`. +If you don't specify a list, `sanitizers` uses a default list of supported sanitizers (currently ["address"](https://clang.llvm.org/docs/AddressSanitizer.html) and ["undefined"](https://clang.llvm.org/docs/UndefinedBehaviorSanitizer.html)).