diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-04-01 23:34:30 +0200 |
---|---|---|
committer | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2016-04-25 22:19:29 +0200 |
commit | 0a8e622c85842d79683fd0556f2443096d7a9ca2 (patch) | |
tree | b6fa7d0e85cb3285e628d81a9f55bdf22bf6745b | |
parent | b593ecdd3486f4541c0bcd68beec9146d78813a2 (diff) |
Changes to output
-rw-r--r-- | test/integration/Main.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/integration/Main.cpp b/test/integration/Main.cpp index 373a7ed..9674d96 100644 --- a/test/integration/Main.cpp +++ b/test/integration/Main.cpp @@ -203,6 +203,7 @@ static bool runTest(test::Logger &logger, const Test &test, const std::string &targetFile) { // Parse the infile and dump it as OSXML to a string stream + logger.note("Parsing " + test.infile); std::stringstream actual_output; bool res = parseFile(test.infile, actual_output); @@ -361,7 +362,7 @@ int main(int argc, char **argv) size_t successCount = 0; size_t failureCount = 0; for (auto &test : tests) { - logger.note("Running test " + test.infile); + logger.headline("Test \"" + test.name + "\""); // Create the target directory (use CTest folder) fs::path target = |