Hi.
Upstream has a fix. Unfortunately it somehow did not make it into v2.9.0.
I have attached it as a patch.
Sincerely,
Joachim
--
Papier ist gebundenes CO2. Bitte drucken Sie diese EMail aus und archivieren
Sie sie.
--- a/test/t-sdiv_qrnnd.c
+++ b/test/t-sdiv_qrnnd.c
@@ -33,7 +33,7 @@
{
d = n_randtest_not_zero(state);
nh = n_randtest(state);
- } while ((FLINT_ABS(nh) >= FLINT_ABS(d)/2) || (nh == WORD_MIN));
+ } while ((nh == WORD_MIN) || (FLINT_ABS(nh) >= FLINT_ABS(d)/2));
nl = n_randtest(state);