2014-10-03 Niels Möller <nisse@lysator.liu.se>
+ * testsuite/ecc-redc-test.c [NETTLE_USE_MINI_GMP]: Enable test.
+ (test_main): Replace gmp_fprintf calls.
+
* testsuite/ecc-modinv-test.c [NETTLE_USE_MINI_GMP]: Enable test.
(ref_modinv): Use mpz_gcdext, instead of mpn_gcdext.
- (test_modulo): Replace gmp_fprintf calls by plain fprintf and
- mpn_out_str.
+ (test_modulo): Replace gmp_fprintf calls.
* testsuite/ecc-mod-test.c [NETTLE_USE_MINI_GMP]: Enable test.
(ref_mod): Use mpz_mod and mpz_limbs_copy, instead of mpn_tdiv_qr.
- (test_modulo): Replace gmp_fprintf calls.
+ (test_modulo): Replace gmp_fprintf calls by plain fprintf and
+ mpn_out_str.
* testsuite/testutils.c (mpn_out_str): New function, needed to
replace uses of gmp_fprintf.
#include "testutils.h"
-#if NETTLE_USE_MINI_GMP
-void
-test_main (void)
-{
- SKIP();
-}
-#else /* ! NETTLE_USE_MINI_GMP */
-
static void
ref_redc (mp_limb_t *rp, const mp_limb_t *ap, const mp_limb_t *mp, mp_size_t mn)
{
{
fprintf (stderr, "ecc->p.reduce failed: bit_size = %u\n",
ecc->p.bit_size);
- gmp_fprintf (stderr, "a = %Nx\n", a, 2*ecc->p.size);
- gmp_fprintf (stderr, "m = %Nx (bad)\n", m, ecc->p.size);
- gmp_fprintf (stderr, "ref = %Nx\n", ref, ecc->p.size);
+ fprintf (stderr, "a = ");
+ mpn_out_str (stderr, 16, a, 2*ecc->p.size);
+ fprintf (stderr, "\nm = ");
+ mpn_out_str (stderr, 16, m, ecc->p.size);
+ fprintf (stderr, " (bad)\nref = ");
+ mpn_out_str (stderr, 16, ref, ecc->p.size);
+ fprintf (stderr, "\n");
abort ();
}
}
{
fprintf (stderr, "ecc_p%c1_redc failed: bit_size = %u\n",
(ecc->p.m[0] == 1) ? 'm' : 'p', ecc->p.bit_size);
- gmp_fprintf (stderr, "a = %Nx\n", a, 2*ecc->p.size);
- gmp_fprintf (stderr, "m = %Nx (bad)\n", m, ecc->p.size);
- gmp_fprintf (stderr, "ref = %Nx\n", ref, ecc->p.size);
+ fprintf (stderr, "a = ");
+ mpn_out_str (stderr, 16, a, 2*ecc->p.size);
+ fprintf (stderr, "\nm = ");
+ mpn_out_str (stderr, 16, m, ecc->p.size);
+ fprintf (stderr, " (bad)\nref = ");
+ mpn_out_str (stderr, 16, ref, ecc->p.size);
+ fprintf (stderr, "\n");
abort ();
}
}
mpz_clear (r);
gmp_randclear (rands);
}
-#endif /* ! NETTLE_USE_MINI_GMP */