summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2016-06-02 16:16:48 +0000
committerzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2016-06-02 16:16:48 +0000
commita7541b32bee45f41bd926285fa5073f886871710 (patch)
treebf279e07302d7d285cda47232283f96a66be1d60
parentdc5d7ff67056e1297168a2c8d7cf940d39ca53e4 (diff)
downloadmpfr-a7541b32bee45f41bd926285fa5073f886871710.tar.gz
avoid mpfr_printf in tests
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/branches/faithful@10409 280ebfd0-de03-0410-8827-d642c229c3f4
-rw-r--r--tests/texp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/texp.c b/tests/texp.c
index 7f8f596c5..d03b9fb40 100644
--- a/tests/texp.c
+++ b/tests/texp.c
@@ -734,8 +734,8 @@ underflow_up (int extended_emin)
printf (" and extended emin");
printf ("\nfor precx = %d, precy = %d, %s\n",
precx, precy, e3 ? "mpfr_exp_3" : "mpfr_exp");
- mpfr_printf ("x = %Re\n", x);
- mpfr_printf ("y = %Re\n", y);
+ printf ("x="); mpfr_dump (x);
+ printf ("y="); mpfr_dump (y);
printf ("Got %u instead of %u.\n",
(unsigned int) __gmpfr_flags,
(unsigned int) MPFR_FLAGS_INEXACT);