aboutsummaryrefslogtreecommitdiffstats
path: root/checks/gfpmath.cpp
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-10-11 17:10:50 +0000
committerlloyd <[email protected]>2008-10-11 17:10:50 +0000
commit8e95ca9077934da671203e09744dace9ee512b18 (patch)
treeb37c68f76a550cdb83be081dea598e07526e6af8 /checks/gfpmath.cpp
parent02a66e7ffffb40ea76c42bb09e85bfd1b238fa09 (diff)
Quieter GF(p) tests
Diffstat (limited to 'checks/gfpmath.cpp')
-rw-r--r--checks/gfpmath.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/checks/gfpmath.cpp b/checks/gfpmath.cpp
index 8dba8cdfe..f5bd03322 100644
--- a/checks/gfpmath.cpp
+++ b/checks/gfpmath.cpp
@@ -802,10 +802,14 @@ u32bit do_gfpmath_tests(Botan::RandomNumberGenerator& rng)
//failed += !test_sec_mod_mul();
//failed += !test_sec_bi_mul();
+#if 0
if(failed == 0)
- std::cout << " OK" << std::endl;
+ std::cout << " OK";
else
- std::cout << ' ' << failed << " failed" << std::endl;
+ std::cout << ' ' << failed << " failed";
+#endif
+
+ std::cout << std::endl;
return failed;
}