diff options
author | zimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4> | 2007-11-17 09:59:19 +0000 |
---|---|---|
committer | zimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4> | 2007-11-17 09:59:19 +0000 |
commit | 5c2992320912750e020620ef8d52039d7f65a617 (patch) | |
tree | eb253688569ee1649ea60be820d0be0af392e094 /tests/tdiv_d.c | |
parent | 0a4ea5356442f845fc7ec79bf9f5646e9ba69295 (diff) | |
download | mpfr-5c2992320912750e020620ef8d52039d7f65a617.tar.gz |
got rid of mpfr_init_gmp_rand/MPFR_TEST_USE_RANDS and not-reentrant gmp
random functions (mpn_random*, mpz_random*, mpf_random*). Now all tests use
either RANDS (which is cleared by tests_rand_end called by tests_end_mpfr),
or the gmp_randstate_t mechanism.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@4953 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'tests/tdiv_d.c')
-rw-r--r-- | tests/tdiv_d.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tdiv_d.c b/tests/tdiv_d.c index 77a5e0352..3f3da8e2e 100644 --- a/tests/tdiv_d.c +++ b/tests/tdiv_d.c @@ -71,7 +71,7 @@ main (int argc, char *argv[]) mpfr_t x, y, z; double d; int inexact; - MPFR_TEST_USE_RANDS (); + tests_start_mpfr (); /* check with enough precision */ |