diff options
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); } |