summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArmin Rigo <arigo@tunes.org>2016-01-16 11:15:51 +0100
committerArmin Rigo <arigo@tunes.org>2016-01-16 11:15:51 +0100
commit20ca6821ad2fd7e39442298a9dd6afc96ef8f82e (patch)
treed34d591fb41f7b4ae40d99b49f5995f61886f442
parentade685ec0ee02749b477fcf5ca93e7480b8eb542 (diff)
downloadcffi-20ca6821ad2fd7e39442298a9dd6afc96ef8f82e.tar.gz
win32
-rw-r--r--testing/cffi1/test_zdist.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/cffi1/test_zdist.py b/testing/cffi1/test_zdist.py
index ff38ac4..7954468 100644
--- a/testing/cffi1/test_zdist.py
+++ b/testing/cffi1/test_zdist.py
@@ -57,7 +57,7 @@ class TestDist(object):
found_so = None
for name in os.listdir(curdir):
if (name.endswith('.so') or name.endswith('.pyd') or
- name.endswith('.dylib')):
+ name.endswith('.dylib') or name.endswith('.dll')):
found_so = os.path.join(curdir, name)
# foo.so => foo
parts = name.split('.')