summaryrefslogtreecommitdiffstatshomepage
path: root/tests/float/float2int_fp30_intbig.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/float/float2int_fp30_intbig.py')
-rw-r--r--tests/float/float2int_fp30_intbig.py36
1 files changed, 18 insertions, 18 deletions
diff --git a/tests/float/float2int_fp30_intbig.py b/tests/float/float2int_fp30_intbig.py
index fcbe2e309f..4e3c1fa217 100644
--- a/tests/float/float2int_fp30_intbig.py
+++ b/tests/float/float2int_fp30_intbig.py
@@ -34,13 +34,13 @@ if ll_type is None:
print(int(14187744.0))
print("%d" % 14187744.0)
if ll_type == 2:
- print(int(2.0 ** 100))
- print("%d" % 2.0 ** 100)
+ print(int(2.0**100))
+ print("%d" % 2.0**100)
testpass = True
p2_rng = ((30, 63, 127), (62, 63, 127))[is_64bit][ll_type]
for i in range(0, p2_rng):
- bitcnt = len(bin(int(2.0 ** i))) - 3
+ bitcnt = len(bin(int(2.0**i))) - 3
if i != bitcnt:
print("fail: 2.**%u was %u bits long" % (i, bitcnt))
testpass = False
@@ -50,7 +50,7 @@ print("power of 2 test: %s" % (testpass and "passed" or "failed"))
testpass = True
p10_rng = 9
for i in range(0, p10_rng):
- digcnt = len(str(int(10.0 ** i))) - 1
+ digcnt = len(str(int(10.0**i))) - 1
if i != digcnt:
print("fail: 10.**%u was %u digits long" % (i, digcnt))
testpass = False
@@ -69,28 +69,28 @@ def fp2int_test(num, name, should_fail):
if ll_type != 2:
if ll_type == 0:
if is_64bit:
- neg_bad_fp = -1.00000005 * 2.0 ** 62.0
- pos_bad_fp = 2.0 ** 62.0
- neg_good_fp = -(2.0 ** 62.0)
- pos_good_fp = 0.99999993 * 2.0 ** 62.0
+ neg_bad_fp = -1.00000005 * 2.0**62.0
+ pos_bad_fp = 2.0**62.0
+ neg_good_fp = -(2.0**62.0)
+ pos_good_fp = 0.99999993 * 2.0**62.0
else:
- neg_bad_fp = -1.00000005 * 2.0 ** 30.0
- pos_bad_fp = 2.0 ** 30.0
- neg_good_fp = -(2.0 ** 30.0)
- pos_good_fp = 0.9999999499 * 2.0 ** 30.0
+ neg_bad_fp = -1.00000005 * 2.0**30.0
+ pos_bad_fp = 2.0**30.0
+ neg_good_fp = -(2.0**30.0)
+ pos_good_fp = 0.9999999499 * 2.0**30.0
else:
- neg_bad_fp = -0.51 * 2.0 ** 64.0
- pos_bad_fp = 2.0 ** 63.0
- neg_good_fp = -(2.0 ** 63.0)
- pos_good_fp = 1.9999998 * 2.0 ** 62.0
+ neg_bad_fp = -0.51 * 2.0**64.0
+ pos_bad_fp = 2.0**63.0
+ neg_good_fp = -(2.0**63.0)
+ pos_good_fp = 1.9999998 * 2.0**62.0
fp2int_test(neg_bad_fp, "neg bad", True)
fp2int_test(pos_bad_fp, "pos bad", True)
fp2int_test(neg_good_fp, "neg good", False)
fp2int_test(pos_good_fp, "pos good", False)
else:
- fp2int_test(-1.999999879 * 2.0 ** 126.0, "large neg", False)
- fp2int_test(1.999999879 * 2.0 ** 126.0, "large pos", False)
+ fp2int_test(-1.999999879 * 2.0**126.0, "large neg", False)
+ fp2int_test(1.999999879 * 2.0**126.0, "large pos", False)
fp2int_test(float("inf"), "inf test", True)
fp2int_test(float("-inf"), "inf test", True)