tests/float: Make various tests skippable.

This commit is contained in:
Paul Sokolovsky
2017-03-09 00:11:05 +01:00
parent 983144404b
commit a0cbc108ba
4 changed files with 27 additions and 6 deletions

View File

@@ -1,4 +1,11 @@
# test builtin min and max functions with float args
try:
min
max
except:
import sys
print("SKIP")
sys.exit()
print(min(0,1.0))
print(min(1.0,0))