diff options
author | Simon Warta <[email protected]> | 2015-08-08 12:42:45 +0200 |
---|---|---|
committer | Simon Warta <[email protected]> | 2015-08-08 12:42:45 +0200 |
commit | 90409af56f6f86487cf6fcad731b9a5aa6508540 (patch) | |
tree | b6b1afa9d3d4f9f5f066e88e4b7bb557a8df3a49 /src | |
parent | 31d74661c596c88594736b237bf2fcc62015291e (diff) |
Rename fuzzer test consistently
Align filename with test_fuzzer()
Diffstat (limited to 'src')
-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; |