Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,7 @@
# something nasty or ASAN is detecting a false-positive.
# PluginDso::load
leak:PluginDso::load
leak:call_init
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
Copy link

Copilot AI Nov 19, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The suppression pattern leak:ld-linux-x86-64.so is architecture-specific (x86-64) and may not work on other architectures like ARM64 or i386. Consider using a more portable pattern like leak:ld-linux or documenting that this suppression is x86-64 specific. If Rocky Linux 8 is only supported on x86-64 in CI, this may be acceptable.

Suggested change
leak:ld-linux-x86-64.so
leak:ld-linux

Copilot uses AI. Check for mistakes.
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It is better to narrow the scope and only fix CI that is x86.