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_tests.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_tests.cpp')
-rw-r--r-- | src/tests/test_tests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/test_tests.cpp b/src/tests/test_tests.cpp index 52db0679a..3a52b85b9 100644 --- a/src/tests/test_tests.cpp +++ b/src/tests/test_tests.cpp @@ -188,7 +188,7 @@ class Test_Tests final : public Test if(test_result.tests_failed() > 0) { result.test_success("Got expected failure for " + what); - const std::string result_str = test_result.result_string(true); + const std::string result_str = test_result.result_string(); result.confirm("result string contains FAIL", result_str.find("FAIL") != std::string::npos); |