diff options
author | Jack Lloyd <[email protected]> | 2017-04-02 12:52:22 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-04-02 12:52:22 -0400 |
commit | edd19b46252e413048c2d2c819617fb3ba38885c (patch) | |
tree | 5be3889a9752169c8248406644baf9478b2fd166 /src/tests | |
parent | 6ca6c87b31d8ac8cd6511adaf2061250857d799c (diff) | |
parent | 41da6e9b9e950fcf3338bdea2fbc3290f84628f3 (diff) |
Merge GH #959 Print name of test before running it
Diffstat (limited to 'src/tests')
-rw-r--r-- | src/tests/main.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tests/main.cpp b/src/tests/main.cpp index 4248de56b..a7e56be63 100644 --- a/src/tests/main.cpp +++ b/src/tests/main.cpp @@ -233,6 +233,7 @@ class Test_Runner : public Botan_CLI::Command for(auto&& test_name : tests_to_run) { try { + out << test_name << ':' << std::endl; const auto results = Botan_Tests::Test::run_test(test_name, false); out << report_out(results, tests_failed, tests_ran) << std::flush; } |