This is an automated email from the ASF dual-hosted git repository.
bnolsen pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/trafficserver-ci.git
The following commit(s) were added to refs/heads/main by this push:
new be07084 change correct preset asan for branch (#308)
be07084 is described below
commit be07084cef03530f88d58a4017ee1604cb0849e8
Author: Brian Olsen <[email protected]>
AuthorDate: Mon Dec 18 07:24:58 2023 -0700
change correct preset asan for branch (#308)
---
jenkins/branch/CMakePresets.json | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/jenkins/branch/CMakePresets.json b/jenkins/branch/CMakePresets.json
index e060d22..ff50df2 100644
--- a/jenkins/branch/CMakePresets.json
+++ b/jenkins/branch/CMakePresets.json
@@ -77,8 +77,8 @@
"name": "asan",
"hidden": true,
"cacheVariables": {
- "CMAKE_CXX_FLAGS_DEBUG": "-g -fsanitize=address",
- "CMAKE_C_FLAGS_DEBUG": "-g -fsanitize=address"
+ "CMAKE_CXX_FLAGS_DEBUG": "-g -fsanitize=address,undefined",
+ "CMAKE_C_FLAGS_DEBUG": "-g -fsanitize=address,undefined"
}
},
{
@@ -252,8 +252,8 @@
"description": "Inherit to enable asan, build feature",
"hidden": true,
"cacheVariables": {
- "CMAKE_CXX_FLAGS_DEBUG": "-g -fsanitize=address,undefined",
- "CMAKE_C_FLAGS_DEBUG": "-g -fsanitize=address,undefined"
+ "CMAKE_CXX_FLAGS_DEBUG": "-g -fsanitize=address",
+ "CMAKE_C_FLAGS_DEBUG": "-g -fsanitize=address"
}
},
{