diff options
author | lloyd <[email protected]> | 2013-12-31 21:38:18 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2013-12-31 21:38:18 +0000 |
commit | c5dc7598403b5f7e739b2c27707663b16c4199f8 (patch) | |
tree | 632042be775d298f648247b824b97d493dca889d /checks/bigint.cpp | |
parent | 7947d9787fe1cf448a418e2252edededdf887032 (diff) |
Split up tests by type
Diffstat (limited to 'checks/bigint.cpp')
-rw-r--r-- | checks/bigint.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/checks/bigint.cpp b/checks/bigint.cpp index 9df44678d..3a8b9c720 100644 --- a/checks/bigint.cpp +++ b/checks/bigint.cpp @@ -44,7 +44,6 @@ u32bit do_bigint_tests(const std::string& filename, u32bit errors = 0, alg_count = 0; std::string algorithm; - bool first = true; u32bit counter = 0; while(!test_data.eof()) @@ -76,11 +75,6 @@ u32bit do_bigint_tests(const std::string& filename, alg_count = 0; counter = 0; - if(!first) - std::cout << std::endl; - std::cout << "Testing BigInt " << algorithm << ": "; - std::cout.flush(); - first = false; continue; } @@ -114,11 +108,6 @@ u32bit do_bigint_tests(const std::string& filename, else std::cout << "Unknown MPI test " << algorithm << std::endl; - if(counter % 3 == 0) - { - std::cout << '.'; - std::cout.flush(); - } counter++; alg_count++; errors += new_errors; @@ -127,7 +116,6 @@ u32bit do_bigint_tests(const std::string& filename, std::cout << "ERROR: BigInt " << algorithm << " failed test #" << std::dec << alg_count << std::endl; } - std::cout << std::endl; return errors; } |