diff options
author | zimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4> | 2016-06-23 10:15:28 +0000 |
---|---|---|
committer | zimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4> | 2016-06-23 10:15:28 +0000 |
commit | a82f1091c1c9df6ea80b46a648612ee36b4c3499 (patch) | |
tree | 13d23ec08390fd090cfe89a31d60f88128a23769 /tests/tfmma.c | |
parent | 6304cc7a25fdce749d803158b9f91906c02e1ce3 (diff) | |
download | mpfr-a82f1091c1c9df6ea80b46a648612ee36b4c3499.tar.gz |
fix for RNDF
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/branches/faithful@10486 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'tests/tfmma.c')
-rw-r--r-- | tests/tfmma.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/tfmma.c b/tests/tfmma.c index c45995a57..b510a0c78 100644 --- a/tests/tfmma.c +++ b/tests/tfmma.c @@ -263,7 +263,7 @@ overflow_tests (void) set_emax (emax); exp_a = emax/2 + 32; - rnd = RND_RAND (); + do rnd = RND_RAND (); while (rnd == MPFR_RNDF); prec_a = 64 + randlimb () % 100; prec_z = MPFR_PREC_MIN + randlimb () % 160; @@ -347,6 +347,9 @@ overflow_tests (void) mpfr_dump (z2); printf (" with inex = %d, flags =", inex2); flags_out (flags2); + printf ("a="); mpfr_dump (a); + printf ("c="); mpfr_dump (c); + printf ("d="); mpfr_dump (d); exit (1); } |