Skip to content
Snippets Groups Projects
Commit dfa5a2b1 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

Merge branch 'vtkdiff-log-output' into 'master'

[ogs] Added log separators for vtkdiff output.

See merge request ogs/ogs!4068
parents ccdc262f 10a77643
No related branches found
No related tags found
No related merge requests found
...@@ -277,12 +277,14 @@ bool TestDefinition::runTests() const ...@@ -277,12 +277,14 @@ bool TestDefinition::runTests() const
back_inserter(return_values), back_inserter(return_values),
[](std::string const& command_line) [](std::string const& command_line)
{ {
INFO("---------- vtkdiff begin ----------");
int const return_value = std::system(command_line.c_str()); int const return_value = std::system(command_line.c_str());
if (return_value != 0) if (return_value != 0)
{ {
WARN("Return value {:d} was returned by '{:s}'.", WARN("Return value {:d} was returned by '{:s}'.",
return_value, command_line); return_value, command_line);
} }
INFO("---------- vtkdiff end ----------\n");
return return_value; return return_value;
}); });
return !return_values.empty() && return !return_values.empty() &&
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment