summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authordaney <daney@280ebfd0-de03-0410-8827-d642c229c3f4>2001-10-25 15:03:13 +0000
committerdaney <daney@280ebfd0-de03-0410-8827-d642c229c3f4>2001-10-25 15:03:13 +0000
commite529ae9d408e3dc44b64aed574c8a34294f443b2 (patch)
tree097f2c6e8c4ab2719fca0b40c75b1316f6ca3f31 /tests
parent1dfd99f01be78d9b4b09f795b69e41c95ffb13ec (diff)
downloadmpfr-e529ae9d408e3dc44b64aed574c8a34294f443b2.tar.gz
add log2 and log10
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@1370 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'tests')
-rw-r--r--tests/reuse.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/reuse.c b/tests/reuse.c
index d918f9ce6..153c4cf94 100644
--- a/tests/reuse.c
+++ b/tests/reuse.c
@@ -403,6 +403,10 @@ main (void)
testfunc = (void*) mpfr_cos; test2 ("mpfr_cos", 53, GMP_RNDN);
testfunc = (void*) mpfr_sin; test2 ("mpfr_sin", 53, GMP_RNDN);
testfunc = (void*) mpfr_tan; test2 ("mpfr_tan", 53, GMP_RNDN);
+ testfunc = (void*) mpfr_log10; test2 ("mpfr_log10", 53, GMP_RNDN);
+ /* testfunc = (void*) mpfr_log10; test2 ("mpfr_log10", 53, GMP_RNDN);
+ testfunc = (void*) mpfr_pow; test3 ("mpfr_pow", 53, GMP_RNDN);*/
return 0;
}
+