Skip to content
Snippets Groups Projects
Commit 9e04f32b authored by Ansgar Burchardt's avatar Ansgar Burchardt
Browse files

dune-ctest: do not print messages from failing tests twice

CTest already prints the messages once.

Closes: #126
parent 9a9fceea
No related branches found
No related tags found
1 merge request!535dune-ctest: do not print messages from failing tests twice
......@@ -23,16 +23,11 @@ def printTest(test):
status = test.get("Status")
name = test.find("Name").text
fullName = test.find("FullName").text
output = test.find("Results").find("Measurement").find("Value").text
print("======================================================================")
print("Name: {}".format(name))
print("FullName: {}".format(fullName))
print("Status: {}".format(status.upper()))
if output:
print("Output:")
for line in output.splitlines():
print(" ", line)
print()
def handleTest(test):
......
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