tests: Adapt misc/features.py tests for ports without floating point.

modjni
Daniel Campora 2015-06-24 10:48:54 +02:00 committed by Damien George
parent c5175526dd
commit 4af5424242
1 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ print("1")
print("2")
print(three)
print("{}".format(4))
five=25/5
five=25//5
print(int(five))
j=0
for i in range(4):
@ -15,7 +15,7 @@ for i in range(4):
print(j)
print(3+4)
try:
a=4/zero
a=4//zero
except:
print(8)
print("xxxxxxxxx".count("x"))