diff options
author | Jack Lloyd <[email protected]> | 2018-04-11 18:05:40 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2018-04-11 18:05:40 -0400 |
commit | 87c697920206ac7ab0f757d3ec0c5550defd2517 (patch) | |
tree | 61da156f5a2c4bf65de38f93cb432adc1f233f1c /src/tests/test_runner.cpp | |
parent | c6a90da3f5a43411c6cd5a481b4af6a2b301cc11 (diff) |
Fix the botan-test --verbose flag, which did nothing
It used to do something, then I broke it.
Diffstat (limited to 'src/tests/test_runner.cpp')
-rw-r--r-- | src/tests/test_runner.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/tests/test_runner.cpp b/src/tests/test_runner.cpp index 2816d386d..849c1a8a9 100644 --- a/src/tests/test_runner.cpp +++ b/src/tests/test_runner.cpp @@ -208,8 +208,7 @@ std::string report_out(const std::vector<Botan_Tests::Test::Result>& results, for(auto const& result : combined) { - const bool verbose = false; - out << result.second.result_string(verbose); + out << result.second.result_string(); tests_failed += result.second.tests_failed(); tests_ran += result.second.tests_run(); } |