From 97e1f7f1b5667c935de022bb8b7f1d86fbab9f16 Mon Sep 17 00:00:00 2001 From: esc Date: Thu, 6 Feb 2025 16:52:38 +0100 Subject: [PATCH] update set of allowed libraried As title --- llvmlite/tests/test_binding.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/llvmlite/tests/test_binding.py b/llvmlite/tests/test_binding.py index 458e2c8ea..e32fcb6d3 100644 --- a/llvmlite/tests/test_binding.py +++ b/llvmlite/tests/test_binding.py @@ -718,7 +718,8 @@ def test_linux(self): self.fail("failed parsing dependencies? got %r" % (deps,)) # Ensure all dependencies are expected allowed = set(['librt', 'libdl', 'libpthread', 'libz', 'libm', - 'libgcc_s', 'libc', 'ld-linux', 'ld64']) + 'libgcc_s', 'libc', 'ld-linux', 'ld64', 'libzstd', + 'libstdc++']) if platform.python_implementation() == 'PyPy': allowed.add('libtinfo')