This is an automated email from the ASF dual-hosted git repository.
cmcfarlen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git
The following commit(s) were added to refs/heads/master by this push:
new 4bba67846c Turn off ASAN leak detection running
tscore/CompileParseRules during build (#13137)
4bba67846c is described below
commit 4bba67846c05ddb78163a4143deddd7245cb6865
Author: Chris McFarlen <[email protected]>
AuthorDate: Mon May 11 17:36:40 2026 -0500
Turn off ASAN leak detection running tscore/CompileParseRules during build
(#13137)
---
src/tscore/CMakeLists.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/tscore/CMakeLists.txt b/src/tscore/CMakeLists.txt
index 9b2382e1c4..7790adc87d 100644
--- a/src/tscore/CMakeLists.txt
+++ b/src/tscore/CMakeLists.txt
@@ -21,7 +21,7 @@ add_executable(CompileParseRules CompileParseRules.cc)
add_custom_command(
OUTPUT ParseRulesCType ParseRulesCTypeToUpper ParseRulesCTypeToLower
- COMMAND CompileParseRules
+ COMMAND ${CMAKE_COMMAND} -E env ASAN_OPTIONS=detect_leaks=0
$<TARGET_FILE:CompileParseRules>
COMMENT "Generating compile parse rules"
)