Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions atf_core/scripts/analyser.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def get_result(self):
if test_result.groundtruth_result != None and not test_result.groundtruth_result:
# check if there are already failed tests in atf_result
if atf_result.groundtruth_result == None:
atf_result.groundtruth_error_message = "Failed ATF tests:"
atf_result.groundtruth_error_message = "\nFailed ATF tests:"
atf_result.groundtruth_result = False
atf_result.groundtruth_error_message += "\n - test '%s' (%s, %s, %s, %s): %s"%(test_result.name, test_result.robot, test_result.env, test_result.test_config, test_result.testblockset, test_result.groundtruth_error_message)
if atf_result.groundtruth_result == None and test_result.groundtruth_result:
Expand All @@ -153,7 +153,7 @@ def print_result(self, atf_result):
print "*************************"
print "*** SOME TESTS FAILED ***"
print "*************************"
print atf_result.groundtruth_error_message
#print atf_result.groundtruth_error_message
self.print_result_summary(atf_result)
else:
print "\n"
Expand Down