diff options
author | zimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4> | 2016-02-05 08:24:01 +0000 |
---|---|---|
committer | zimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4> | 2016-02-05 08:24:01 +0000 |
commit | 36d3124b2f7cced3d57011ce875360d224e46700 (patch) | |
tree | 63b6c638085bae102c97b80a3fd8559780bd16e2 /tests/tlog1p.c | |
parent | 6c2dd40880db133ad2db43d9d753b71dac940d80 (diff) | |
download | mpfr-36d3124b2f7cced3d57011ce875360d224e46700.tar.gz |
changed test_generic() calls to start from MPFR_PREC_MIN instead of 2;
this revealed a special-case code in mpfr_exp which didn't work for prec=1
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@9955 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'tests/tlog1p.c')
-rw-r--r-- | tests/tlog1p.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tlog1p.c b/tests/tlog1p.c index f69f44bcd..c21656be7 100644 --- a/tests/tlog1p.c +++ b/tests/tlog1p.c @@ -136,7 +136,7 @@ main (int argc, char *argv[]) special (); other (); - test_generic (2, 100, 50); + test_generic (MPFR_PREC_MIN, 100, 50); data_check ("data/log1p", mpfr_log1p, "mpfr_log1p"); bad_cases (mpfr_log1p, mpfr_expm1, "mpfr_log1p", 256, -64, 40, |