[pypy-commit] cffi default: fix test

arigo noreply at buildbot.pypy.org
Fri Jan 9 11:57:44 CET 2015


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r1628:a0e43b0f5743
Date: 2015-01-09 11:58 +0100
http://bitbucket.org/cffi/cffi/changeset/a0e43b0f5743/

Log:	fix test

diff --git a/testing/test_parsing.py b/testing/test_parsing.py
--- a/testing/test_parsing.py
+++ b/testing/test_parsing.py
@@ -247,7 +247,8 @@
         ct = win_common_types(maxsize)
         clear_all(ct)
         for key in sorted(ct):
-            resolve_common_type(key)
+            if ct[key] != 'set-unicode-needed':
+                resolve_common_type(key)
     # assert did not crash
     # now try to use e.g. WPARAM (-> UINT_PTR -> unsigned 32/64-bit)
     for maxsize in [2**32-1, 2**64-1]:


More information about the pypy-commit mailing list