aboutsummaryrefslogtreecommitdiffstats
path: root/checks/check.cpp
diff options
context:
space:
mode:
authorlloyd <[email protected]>2006-06-07 08:58:09 +0000
committerlloyd <[email protected]>2006-06-07 08:58:09 +0000
commit877bcfb5e7265f9bae084c5328a3fb61bc3d6618 (patch)
treecab19f994d13c0005f0a11031e2ed8c948c5db99 /checks/check.cpp
parent580b9c13fb15c91fbc3187f0171f482f65316754 (diff)
Revert last change to check.cpp (didn't mean to commit that)
Commit the actual squaring tests in checks/bigint.cpp
Diffstat (limited to 'checks/check.cpp')
-rw-r--r--checks/check.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/checks/check.cpp b/checks/check.cpp
index 177632d0a..81bb92220 100644
--- a/checks/check.cpp
+++ b/checks/check.cpp
@@ -173,10 +173,10 @@ int validate()
test_types();
u32bit errors = 0;
try {
- //errors += do_validation_tests(VALIDATION_FILE);
- // errors += do_validation_tests(EXPECTED_FAIL_FILE, false);
+ errors += do_validation_tests(VALIDATION_FILE);
+ errors += do_validation_tests(EXPECTED_FAIL_FILE, false);
errors += do_bigint_tests(BIGINT_VALIDATION_FILE);
- // errors += do_pk_validation_tests(PK_VALIDATION_FILE);
+ errors += do_pk_validation_tests(PK_VALIDATION_FILE);
}
catch(Botan::Exception& e)
{