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 e8d1289196 Comment out the matcher header_rewrite test (#12466)
e8d1289196 is described below
commit e8d12891960f9138adedd9f13bcb825669192edf
Author: Chris McFarlen <[email protected]>
AuthorDate: Fri Aug 22 15:55:38 2025 -0500
Comment out the matcher header_rewrite test (#12466)
---
plugins/header_rewrite/CMakeLists.txt | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/plugins/header_rewrite/CMakeLists.txt
b/plugins/header_rewrite/CMakeLists.txt
index b46e869505..a757441f0f 100644
--- a/plugins/header_rewrite/CMakeLists.txt
+++ b/plugins/header_rewrite/CMakeLists.txt
@@ -63,10 +63,11 @@ if(BUILD_TESTING)
target_link_libraries(test_header_rewrite PRIVATE maxminddb::maxminddb)
endif()
- add_executable(test_matcher matcher_tests.cc matcher.cc lulu.cc
regex_helper.cc resources.cc)
- add_catch2_test(NAME test_matcher COMMAND $<TARGET_FILE:test_matcher>)
-
- target_link_libraries(test_matcher PRIVATE Catch2::Catch2WithMain ts::tscore
libswoc::libswoc PCRE::PCRE)
+ # This test has linker issue when cripts is enabled, so its commented for now
+ # add_executable(test_matcher matcher_tests.cc matcher.cc lulu.cc
regex_helper.cc resources.cc)
+ # add_catch2_test(NAME test_matcher COMMAND $<TARGET_FILE:test_matcher>)
+ #
+ # target_link_libraries(test_matcher PRIVATE Catch2::Catch2WithMain
ts::tscore libswoc::libswoc PCRE::PCRE)
endif()
verify_global_plugin(header_rewrite)