Skip to content
Snippets Groups Projects

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

1 file
+ 0
5
Compare changes
  • Side-by-side
  • Inline
+ 0
5
@@ -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):
Loading