Commit 6f9ac4da authored by Robert Bradshaw's avatar Robert Bradshaw

Disable specialfloat for Windows + old Python. (ticket #450)

parent 756af614
......@@ -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:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment