This is an automated email from the ASF dual-hosted git repository.

cmcfarlen pushed a commit to branch 10.2.x
in repository https://gitbox.apache.org/repos/asf/trafficserver.git

commit f46aebb6dc7689691189f4a22eac342d79b19be4
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)
    
    (cherry picked from commit 4bba67846c05ddb78163a4143deddd7245cb6865)
---
 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"
 )
 

Reply via email to