Skip to content

Commit

Permalink
[PyROOT] Whitelist libgcc_s library in imported library test
Browse files Browse the repository at this point in the history
On some platforms, the low-level runtime library provided by GCC will
also be loaded when importing ROOT. Therefore, it needs to be added to
the whitelist such that the ROOT Python module tests don't fail because
of it.

Fixes a test failure that I saw on my workstation with NixOS.
  • Loading branch information
guitargeek committed Dec 1, 2024
1 parent 78c1624 commit ae4b0b7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions bindings/pyroot/pythonizations/test/import_load_libs.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ class ImportLoadLibs(unittest.TestCase):
'libnss_.*',
'ld.*',
'libffi',
'libgcc_s',
# AddressSanitizer runtime and ROOT configuration
'libclang_rt.asan-.*',
'libROOTSanitizerConfig',
Expand Down

0 comments on commit ae4b0b7

Please sign in to comment.