diff options
author | lloyd <[email protected]> | 2008-11-17 17:56:59 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-11-17 17:56:59 +0000 |
commit | dde1ae3fa52e1b4d8d407d3484a02eb197511509 (patch) | |
tree | 9a406f6f7f5d44e5f3b3db4aad4841cc59fb8178 /checks/check.cpp | |
parent | 14f0d6e085ed2f7092eff9e0620f849843e5c68d (diff) |
Output that ECC tests are being run, and run them after GF(p) math tests which is a reasonable ordering
Diffstat (limited to 'checks/check.cpp')
-rw-r--r-- | checks/check.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/checks/check.cpp b/checks/check.cpp index 24e1dab48..619e8a3a7 100644 --- a/checks/check.cpp +++ b/checks/check.cpp @@ -203,12 +203,11 @@ int run_test_suite(RandomNumberGenerator& rng) u32bit errors = 0; try { - do_ec_tests(rng); - errors += do_validation_tests(VALIDATION_FILE, rng); errors += do_validation_tests(EXPECTED_FAIL_FILE, rng, false); errors += do_bigint_tests(BIGINT_VALIDATION_FILE, rng); errors += do_gfpmath_tests(rng); + do_ec_tests(rng); errors += do_pk_validation_tests(PK_VALIDATION_FILE, rng); //errors += do_cvc_tests(rng); } |