diff options
author | lloyd <[email protected]> | 2006-06-07 08:58:09 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2006-06-07 08:58:09 +0000 |
commit | 877bcfb5e7265f9bae084c5328a3fb61bc3d6618 (patch) | |
tree | cab19f994d13c0005f0a11031e2ed8c948c5db99 /checks/check.cpp | |
parent | 580b9c13fb15c91fbc3187f0171f482f65316754 (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.cpp | 6 |
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) { |