diff options
author | lloyd <[email protected]> | 2008-11-17 17:54:44 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-11-17 17:54:44 +0000 |
commit | 14f0d6e085ed2f7092eff9e0620f849843e5c68d (patch) | |
tree | e5ddcde5a3cb4b58c6e356b81ad614dd19d93382 /checks/check.cpp | |
parent | 4d1d9773180770d3be26714783aec495c9db63bc (diff) |
Tame ec_tests.cpp and integrate it into the test code.
I'm seeing one failure on Core2. Have not diagnosed at all.
A number of tests are #if'ed out. Many were rubbed out in the
original InSiTo version, others I commented out due to changed/removed
APIs.
Diffstat (limited to 'checks/check.cpp')
-rw-r--r-- | checks/check.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/checks/check.cpp b/checks/check.cpp index aeb7e98e2..24e1dab48 100644 --- a/checks/check.cpp +++ b/checks/check.cpp @@ -203,6 +203,8 @@ 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); |