summaryrefslogtreecommitdiff
path: root/tests/texp10.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/texp10.c')
-rw-r--r--tests/texp10.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/tests/texp10.c b/tests/texp10.c
index bb7ea121e..5b73c23c1 100644
--- a/tests/texp10.c
+++ b/tests/texp10.c
@@ -154,9 +154,10 @@ overfl_exp10_0 (void)
if (! mpfr_equal_p (x, y))
{
printf ("Error in overfl_exp10_0 (i = %d, rnd = %s):\n"
- " Got ", i, mpfr_print_rnd_mode ((mpfr_rnd_t) rnd));
- mpfr_print_binary (x);
- printf (" instead of 0.11111111E%d.\n", emax);
+ " Got ", i,
+ mpfr_print_rnd_mode ((mpfr_rnd_t) rnd));
+ mpfr_dump (x);
+ printf (" instead of 0.11111111E%d.\n", emax);
err = 1;
}
}
@@ -172,9 +173,10 @@ overfl_exp10_0 (void)
if (! (mpfr_inf_p (x) && MPFR_IS_POS (x)))
{
printf ("Error in overfl_exp10_0 (i = %d, rnd = %s):\n"
- " Got ", i, mpfr_print_rnd_mode ((mpfr_rnd_t) rnd));
- mpfr_print_binary (x);
- printf (" instead of +Inf.\n");
+ " Got ", i,
+ mpfr_print_rnd_mode ((mpfr_rnd_t) rnd));
+ mpfr_dump (x);
+ printf (" instead of +Inf.\n");
err = 1;
}
}