From f14867b16054282df30f1c7bc4fec21a0bf1f982 Mon Sep 17 00:00:00 2001 From: Mattias Ellert Date: Fri, 12 Jul 2024 00:20:04 +0200 Subject: [PATCH] [pyroot] Whitelist libtbbmalloc in library import test 6/1344 Test #12: pyunittests-pyroot-import-load-libs .......................................***Failed 1.35 sec test_import (import_load_libs.ImportLoadLibs.test_import) Test libraries loaded after importing ROOT ... ERROR ====================================================================== ERROR: test_import (import_load_libs.ImportLoadLibs.test_import) Test libraries loaded after importing ROOT ---------------------------------------------------------------------- Exception: Found not whitelisted libraries after importing ROOT: - libtbbmalloc If the test fails with a library that is loaded on purpose, please add it to the whitelist. ---------------------------------------------------------------------- Ran 1 test in 1.186s FAILED (errors=1) This failure is seen in Fedora 41 after tbb was updated from version 2021.11.0 to version 2021.13.0 in the distribution. --- bindings/pyroot/pythonizations/test/import_load_libs.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bindings/pyroot/pythonizations/test/import_load_libs.py b/bindings/pyroot/pythonizations/test/import_load_libs.py index 179c76f6fdf87..c370a3cd42f2c 100644 --- a/bindings/pyroot/pythonizations/test/import_load_libs.py +++ b/bindings/pyroot/pythonizations/test/import_load_libs.py @@ -40,6 +40,7 @@ class ImportLoadLibs(unittest.TestCase): 'libssl', 'libcrypt.*', # by libssl 'libtbb', + 'libtbbmalloc', 'liburing', # by libRIO if uring option is enabled # On centos7 libssl links against kerberos pulling in all dependencies below, removed with libssl1.1.0 'libgssapi_krb5',