From: Niels Möller Date: Fri, 3 Oct 2014 14:42:19 +0000 (+0200) Subject: Enable ecc-redc-test, also with mini-gmp. X-Git-Tag: nettle_3.1rc1~74 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b4971114b2b3a5b0cecdf268544fdcd4440bbc2c;p=thirdparty%2Fnettle.git Enable ecc-redc-test, also with mini-gmp. --- diff --git a/ChangeLog b/ChangeLog index 8ef73549..88046b7b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,13 +1,16 @@ 2014-10-03 Niels Möller + * 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. diff --git a/testsuite/ecc-redc-test.c b/testsuite/ecc-redc-test.c index aa46fb8e..2d165f43 100644 --- a/testsuite/ecc-redc-test.c +++ b/testsuite/ecc-redc-test.c @@ -1,13 +1,5 @@ #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) { @@ -80,9 +72,13 @@ test_main (void) { 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 (); } } @@ -101,9 +97,13 @@ test_main (void) { 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 (); } } @@ -113,4 +113,3 @@ test_main (void) mpz_clear (r); gmp_randclear (rands); } -#endif /* ! NETTLE_USE_MINI_GMP */