aboutsummaryrefslogtreecommitdiffstats
path: root/checks/check.cpp
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-10-15 00:43:07 +0000
committerlloyd <[email protected]>2008-10-15 00:43:07 +0000
commit6844c48be3b974c7e17fe5789b452278d68c284e (patch)
tree02dc6a65656c510c4fafeaa029b56875d22a54f0 /checks/check.cpp
parentec08a1cf52885ee5a488a80d3bf5c2f3b2be22c0 (diff)
Fix include of mp_asm.h in mp_ia32_msvc/mp_asmi.h (used quotes instead of brackets)
Diffstat (limited to 'checks/check.cpp')
-rw-r--r--checks/check.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/checks/check.cpp b/checks/check.cpp
index 2105640f8..eb338266f 100644
--- a/checks/check.cpp
+++ b/checks/check.cpp
@@ -207,12 +207,12 @@ int run_test_suite()
std::auto_ptr<RandomNumberGenerator> rng(
RandomNumberGenerator::make_rng());
+ errors += do_cvc_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);
errors += do_pk_validation_tests(PK_VALIDATION_FILE, *rng);
- //errors += do_cvc_tests(*rng);
}
catch(Botan::Exception& e)
{