summaryrefslogtreecommitdiff
path: root/testing
diff options
context:
space:
mode:
authorArmin Rigo <arigo@tunes.org>2021-09-03 12:23:00 +0200
committerArmin Rigo <arigo@tunes.org>2021-09-03 12:23:00 +0200
commit1a13928f1e22b2ec0dc19816d97a7e40bdad0ed0 (patch)
tree542e931fd8a33fa5b4eab3e178b2a71ea9eb6c31 /testing
parentbbbdda79aab84fbdccb5ccc566a37c977a015449 (diff)
downloadcffi-1a13928f1e22b2ec0dc19816d97a7e40bdad0ed0.tar.gz
#507
Test failure on ia64
Diffstat (limited to 'testing')
-rw-r--r--testing/cffi1/test_cffi_binary.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/testing/cffi1/test_cffi_binary.py b/testing/cffi1/test_cffi_binary.py
index 25953db..7cfbace 100644
--- a/testing/cffi1/test_cffi_binary.py
+++ b/testing/cffi1/test_cffi_binary.py
@@ -10,6 +10,8 @@ def test_no_unknown_exported_symbols():
for line in g:
if not line.startswith('0'):
continue
+ if line[line.find(' ') + 1] == 'l':
+ continue
if '*UND*' in line:
continue
name = line.split()[-1]