diff options
author | Simon Warta <[email protected]> | 2015-08-08 12:49:13 +0200 |
---|---|---|
committer | Simon Warta <[email protected]> | 2015-08-08 12:49:13 +0200 |
commit | b3bb7eef49760bb9410b316f1fda0860b94c9a9c (patch) | |
tree | b6b1afa9d3d4f9f5f066e88e4b7bb557a8df3a49 | |
parent | 31d74661c596c88594736b237bf2fcc62015291e (diff) | |
parent | 90409af56f6f86487cf6fcad731b9a5aa6508540 (diff) |
Merge pull request #238 from webmaster128/fuzzer
Rename fuzzer test consistently
-rw-r--r-- | src/tests/test_fuzzer.cpp (renamed from src/tests/test_fuzz.cpp) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tests/test_fuzz.cpp b/src/tests/test_fuzzer.cpp index a44110f24..212a313a8 100644 --- a/src/tests/test_fuzz.cpp +++ b/src/tests/test_fuzzer.cpp @@ -48,11 +48,11 @@ size_t test_x509_fuzz() if(duration > 100) { - std::cout << "Fuzz test " << vec << " took " << duration << " ms\n"; + std::cout << "Fuzzer test " << vec << " took " << duration << " ms" << std::endl; } } - test_report("Fuzz Checks", tests, fails); + test_report("Fuzzer checks", tests, fails); #endif return fails; |