diff options
Diffstat (limited to 'tests/tcos.c')
-rw-r--r-- | tests/tcos.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/tcos.c b/tests/tcos.c index 80cd41f48..3ba534689 100644 --- a/tests/tcos.c +++ b/tests/tcos.c @@ -202,10 +202,10 @@ overflowed_cos0 (void) if (! mpfr_equal_p (x, y)) { printf ("Error in overflowed_cos0 (i = %d, rnd = %s):\n" - " Got ", i, + " Got ", i, mpfr_print_rnd_mode ((mpfr_rnd_t) rnd)); - mpfr_print_binary (x); - printf (" instead of 0.11111111E%d.\n", emax); + mpfr_dump (x); + printf (" instead of 0.11111111E%d.\n", emax); err = 1; } } @@ -221,10 +221,10 @@ overflowed_cos0 (void) if (! (mpfr_inf_p (x) && MPFR_IS_POS (x))) { printf ("Error in overflowed_cos0 (i = %d, rnd = %s):\n" - " Got ", i, + " Got ", i, mpfr_print_rnd_mode ((mpfr_rnd_t) rnd)); - mpfr_print_binary (x); - printf (" instead of +Inf.\n"); + mpfr_dump (x); + printf (" instead of +Inf.\n"); err = 1; } } |