projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
756af61
)
Disable specialfloat for Windows + old Python. (ticket #450)
author
Robert Bradshaw
<robertwb@math.washington.edu>
Wed, 11 Nov 2009 07:05:37 +0000
(23:05 -0800)
committer
Robert Bradshaw
<robertwb@math.washington.edu>
Wed, 11 Nov 2009 07:05:37 +0000
(23:05 -0800)
runtests.py
patch
|
blob
|
history
diff --git
a/runtests.py
b/runtests.py
index b7bbde07bd6eb1d9e99c2dd742361e9985a03a02..a57a778a2c36fff3abd42db8cbae5b023d10d0ac 100644
(file)
--- 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: