From 6f9ac4da6d2142442fd85dd3e879f8282e13258f Mon Sep 17 00:00:00 2001 From: Robert Bradshaw Date: Tue, 10 Nov 2009 23:05:37 -0800 Subject: [PATCH] Disable specialfloat for Windows + old Python. (ticket #450) --- runtests.py | 3 +++ 1 file changed, 3 insertions(+) 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: -- 2.26.2