From 7c5e671dacef51a2b4dd0570f1d8909da499999d Mon Sep 17 00:00:00 2001 From: Thom Wiggers Date: Wed, 27 Feb 2019 17:36:19 +0100 Subject: [PATCH] Should fix the i386 build --- 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 4c8d3103..e474077b 100644 --- a/test/test_symbol_namespace.py +++ b/test/test_symbol_namespace.py @@ -41,6 +41,8 @@ def check_symbol_namespace(scheme_name, implementation_name): *_, symtype, symbol = symbolstr.split() if symtype in 'TR': if (not symbol.startswith(namespace) and + # weird things on i386 + not symbol.startwith('__x86.get_pc_thunk.') and not symbol.startswith('_' + namespace)): non_namespaced.append(symbol)