diff options
-rw-r--r-- | tests/texpm1.c | 2 | ||||
-rw-r--r-- | tests/tlog1p.c | 2 | ||||
-rw-r--r-- | tests/tlog2.c | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/tests/texpm1.c b/tests/texpm1.c index 1dbefcdb6..e1274a35a 100644 --- a/tests/texpm1.c +++ b/tests/texpm1.c @@ -162,6 +162,8 @@ main (int argc, char *argv[]) test_generic (2, 100, 100); + data_check ("data/expm1", mpfr_expm1, "mpfr_expm1"); + tests_end_mpfr (); return 0; } diff --git a/tests/tlog1p.c b/tests/tlog1p.c index bb0cf040c..b6d0b6252 100644 --- a/tests/tlog1p.c +++ b/tests/tlog1p.c @@ -126,6 +126,8 @@ main (int argc, char *argv[]) test_generic (2, 100, 50); + data_check ("data/log1p", mpfr_log1p, "mpfr_log1p"); + tests_end_mpfr (); return 0; } diff --git a/tests/tlog2.c b/tests/tlog2.c index 0f8f90a8c..ec323edf1 100644 --- a/tests/tlog2.c +++ b/tests/tlog2.c @@ -76,6 +76,8 @@ main (int argc, char *argv[]) test_generic (2, 100, 30); + data_check ("data/log2", mpfr_log2, "mpfr_log2"); + tests_end_mpfr (); return 0; } |