diff options
Diffstat (limited to 'tests/float/math_fun_intbig.py')
-rw-r--r-- | tests/float/math_fun_intbig.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/float/math_fun_intbig.py b/tests/float/math_fun_intbig.py new file mode 100644 index 0000000000..962c10daa8 --- /dev/null +++ b/tests/float/math_fun_intbig.py @@ -0,0 +1,12 @@ +# test the math functions that return ints, with very large results + +try: + import math +except ImportError: + print("SKIP") + import sys + sys.exit() + +for fun in (math.ceil, math.floor, math.trunc): + for x in (-1e25, 1e25): + print('%.3g' % fun(x)) |