summaryrefslogtreecommitdiff
path: root/tests/tlog2p1.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tlog2p1.c')
-rw-r--r--tests/tlog2p1.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/tlog2p1.c b/tests/tlog2p1.c
index 0e37b60f1..85e797753 100644
--- a/tests/tlog2p1.c
+++ b/tests/tlog2p1.c
@@ -32,7 +32,7 @@ special (void)
mpfr_t x;
int inex;
- mpfr_init2 (x, 32);
+ mpfr_init2 (x, MPFR_PREC_MIN);
mpfr_set_nan (x);
mpfr_clear_flags ();
@@ -76,9 +76,10 @@ special (void)
MPFR_ASSERTN (__gmpfr_flags == MPFR_FLAGS_NAN);
/* include one hard-coded test */
+ mpfr_set_prec (x, 32);
mpfr_set_ui (x, 17, MPFR_RNDN);
inex = mpfr_log2p1 (x, x, MPFR_RNDN);
- MPFR_ASSERTN (mpfr_cmp_ui_2exp (x, 1119355719, -28) == 0);
+ MPFR_ASSERTN (mpfr_cmp_ui_2exp (x, 1119355719UL, -28) == 0);
MPFR_ASSERTN (inex < 0);
mpfr_clear (x);