summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/reuse.c5
-rw-r--r--tests/taway.c5
2 files changed, 10 insertions, 0 deletions
diff --git a/tests/reuse.c b/tests/reuse.c
index 3647b2cfc..753244ef2 100644
--- a/tests/reuse.c
+++ b/tests/reuse.c
@@ -675,6 +675,11 @@ main (void)
test3a (mpfr_modf, "mpfr_modf", p, (mpfr_rnd_t) rnd);
test3a (mpfr_sinh_cosh, "mpfr_sinh_cosh", p, (mpfr_rnd_t) rnd);
#endif
+
+#if MPFR_VERSION >= MPFR_VERSION_NUM(3,0,0)
+ test2 (mpfr_ai, "mpfr_ai", p, (mpfr_rnd_t) rnd);
+ test2 (mpfr_digamma, "mpfr_digamma", p, (mpfr_rnd_t) rnd);
+#endif
}
tests_end_mpfr ();
diff --git a/tests/taway.c b/tests/taway.c
index 6b6da0fa7..22a80890c 100644
--- a/tests/taway.c
+++ b/tests/taway.c
@@ -487,6 +487,11 @@ main (void)
test3a (mpfr_modf, "mpfr_modf");
test3a (mpfr_sinh_cosh, "mpfr_sinh_cosh");
#endif
+
+#if MPFR_VERSION >= MPFR_VERSION_NUM(3,0,0)
+ test2 (mpfr_ai, "mpfr_ai");
+ test2 (mpfr_digamma, "mpfr_digamma");
+#endif
}
tests_end_mpfr ();