diff --git a/atf_core/scripts/analyser.py b/atf_core/scripts/analyser.py index 450d6eaf..04d043f9 100755 --- a/atf_core/scripts/analyser.py +++ b/atf_core/scripts/analyser.py @@ -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: @@ -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"