diff options
author | zimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4> | 2007-07-20 16:11:15 +0000 |
---|---|---|
committer | zimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4> | 2007-07-20 16:11:15 +0000 |
commit | bd51be6f206ac602e8e2682b72b05a02416f2eb0 (patch) | |
tree | ac6ccf8a4cb0217e5ee20fe07aea381da020fdf2 /tests/tacos.c | |
parent | 4e7a9de434990ad6cb497ab843787fcbea382f46 (diff) | |
download | mpfr-bd51be6f206ac602e8e2682b72b05a02416f2eb0.tar.gz |
Added code to check mpfr against Gonnet's tables when the environment variable
MPFR_CHECK_ALL is defined (some table entries were checked by MuPAD)
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@4688 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'tests/tacos.c')
-rw-r--r-- | tests/tacos.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/tacos.c b/tests/tacos.c index 8c4f166e1..5d3177a06 100644 --- a/tests/tacos.c +++ b/tests/tacos.c @@ -176,11 +176,12 @@ main (void) test_generic (2, 100, 7); - data_check ("data/acos", mpfr_acos, "mpfr_acos"); - mpfr_clear (x); mpfr_clear (y); + if (getenv ("MPFR_CHECK_ALL") != NULL) + data_check ("data/acos", mpfr_acos, "mpfr_acos"); + tests_end_mpfr (); return 0; } |