From: Robert Bradshaw Date: Wed, 11 Nov 2009 07:05:37 +0000 (-0800) Subject: Disable specialfloat for Windows + old Python. (ticket #450) X-Git-Tag: 0.12.rc0~4 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=6f9ac4da6d2142442fd85dd3e879f8282e13258f;p=cython.git Disable specialfloat for Windows + old Python. (ticket #450) --- diff --git a/runtests.py b/runtests.py index b7bbde07..a57a778a 100644 --- a/runtests.py +++ b/runtests.py @@ -809,6 +809,9 @@ if __name__ == '__main__': if not test_bugs: exclude_selectors += [ FileListExcluder("tests/bugs.txt") ] + + if sys.platform in ['win32', 'cygwin'] and sys.version_info < (2,6): + exclude_selectors += [ lambda x: x == "run.specialfloat" ] languages = [] if options.use_c: