This is an automated email from the ASF dual-hosted git repository.
bcall 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 734f992dbe Fix Rocky Linux 8 ASAN plugin test failures (#12675)
734f992dbe is described below
commit 734f992dbeb8302d686dcd5cf1dcc87ac5f673db
Author: Bryan Call <[email protected]>
AuthorDate: Thu Nov 20 11:11:59 2025 -0800
Fix Rocky Linux 8 ASAN plugin test failures (#12675)
Add leak suppression for ld-linux-x86-64.so to fix false positive memory
leak reports on Rocky Linux 8 when running plugin tests with ASAN enabled.
The tests properly call dlclose() for each dlopen(), but ASAN's
instrumentation
of the dynamic linker reports false positive leaks during plugin
initialization.
Fixes: test_PluginDso, test_PluginFactory, test_RemapPluginInfo on Rocky
Linux 8
---
.../http/remap/unit-tests/remap_test_dlopen_leak_suppression.txt | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git
a/src/proxy/http/remap/unit-tests/remap_test_dlopen_leak_suppression.txt
b/src/proxy/http/remap/unit-tests/remap_test_dlopen_leak_suppression.txt
index 962310f89f..e3f129dc54 100644
--- a/src/proxy/http/remap/unit-tests/remap_test_dlopen_leak_suppression.txt
+++ b/src/proxy/http/remap/unit-tests/remap_test_dlopen_leak_suppression.txt
@@ -23,4 +23,7 @@
# something nasty or ASAN is detecting a false-positive.
# PluginDso::load
leak:PluginDso::load
-leak:call_init
\ No newline at end of file
+leak:call_init
+# On Rocky Linux 8, ASAN reports leaks from the dynamic linker during dlopen
+# These are false positives as we properly call dlclose for each dlopen
+leak:ld-linux-x86-64.so