summaryrefslogtreecommitdiff
path: root/tests/float/math_domain.py
diff options
context:
space:
mode:
authorDamien George <damien@micropython.org>2023-02-16 10:27:10 +1100
committerDamien George <damien@micropython.org>2023-02-16 10:38:38 +1100
commit177ae2f346b840f6e10dffc41e9cd1e47c9c9c1b (patch)
tree48892a39d6ca571c49a33b5ff9e81468e3ee7781 /tests/float/math_domain.py
parent799d88818232a1c73095e848c116170d7db1852e (diff)
tests/float: Make output of math function tests more readable.
By explicitly naming the function, its arguments, and result. Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'tests/float/math_domain.py')
-rw-r--r--tests/float/math_domain.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/float/math_domain.py b/tests/float/math_domain.py
index d4c45fa3b..063d509b5 100644
--- a/tests/float/math_domain.py
+++ b/tests/float/math_domain.py
@@ -30,12 +30,12 @@ for name, f, args in (
):
for x in args + (inf, -inf, nan):
try:
- ans = f(x)
- print("%.4f" % ans)
+ ans = "%.4f" % f(x)
except ValueError:
- print(name, "ValueError")
+ ans = "ValueError"
except OverflowError:
- print(name, "OverflowError")
+ ans = "OverflowError"
+ print("%s(%.4f) = %s" % (name, x, ans))
# double argument functions
for name, f, args in (
@@ -47,7 +47,7 @@ for name, f, args in (
):
for x in args + ((0, inf), (inf, 0), (inf, inf), (inf, nan), (nan, inf), (nan, nan)):
try:
- ans = f(*x)
- print("%.4f" % ans)
+ ans = "%.4f" % f(*x)
except ValueError:
- print(name, "ValueError")
+ ans = "ValueError"
+ print("%s(%.4f, %.4f) = %s" % (name, x[0], x[1], ans))