aboutsummaryrefslogtreecommitdiff
path: root/tests/float/math_fun_special.py
diff options
context:
space:
mode:
authorDamien George2018-09-04 17:03:37 +1000
committerDamien George2018-09-04 17:03:37 +1000
commit5630f277bd0027f83366c9e87d252bdb04de5c1d (patch)
tree789fbd2ee86a924b04a3135bf602ee4f80c63e79 /tests/float/math_fun_special.py
parenta111ca25eaba71995aea588dc0662744864c65d1 (diff)
tests/float: Test -inf and some larger values for special math funcs.
Diffstat (limited to 'tests/float/math_fun_special.py')
-rw-r--r--tests/float/math_fun_special.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/float/math_fun_special.py b/tests/float/math_fun_special.py
index c3665a7cd..e676a6fc9 100644
--- a/tests/float/math_fun_special.py
+++ b/tests/float/math_fun_special.py
@@ -16,7 +16,7 @@ functions = [
('log10', log10, test_values),
('cosh', cosh, test_values),
('sinh', sinh, test_values),
- ('tanh', tanh, test_values),
+ ('tanh', tanh, [-1e6, -100] + test_values + [100, 1e6]),
('acosh', acosh, [1.0, 5.0, 1.0]),
('asinh', asinh, test_values),
('atanh', atanh, [-0.99, -0.5, 0.0, 0.5, 0.99]),