aboutsummaryrefslogtreecommitdiffstats
path: root/checks/gfpmath.cpp
diff options
context:
space:
mode:
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;
}