From 281afa03236fd3742a17911c154fa0f814253bca Mon Sep 17 00:00:00 2001 From: Thom Wiggers Date: Wed, 11 Dec 2019 16:04:59 +0100 Subject: [PATCH] MacOS ABI versions of Keccak --- test/test_symbol_namespace.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/test_symbol_namespace.py b/test/test_symbol_namespace.py index eaa1a679..bda01839 100644 --- a/test/test_symbol_namespace.py +++ b/test/test_symbol_namespace.py @@ -45,7 +45,9 @@ def test_symbol_namespaces(implementation, impl_path, test_dir, init, destr): symbol.startswith('_' + namespace) or # KeccakP-1600 for AVX2 symbol.startswith('KeccakF1600times4') or + symbol.startswith('_KeccakF1600times4') or # MacOS symbol.startswith('KeccakP1600times4') or + symbol.startswith('_KeccakP1600times4') or # MacOS # weird things on i386 symbol.startswith('__x86.get_pc_thunk.')): non_namespaced.append(symbol)