Merge "Make unexpected success as fail"

This commit is contained in:
Jenkins 2016-07-07 21:14:31 +00:00 committed by Gerrit Code Review
commit e15700f1b9

View File

@ -180,7 +180,7 @@ def show_outcome(stream, test, print_failures=False, failonly=False,
color = color(stream) color = color(stream)
break break
if status == 'fail': if status == 'fail' or status == 'uxsuccess':
FAILS.append(test) FAILS.append(test)
if abbreviate: if abbreviate:
color.write('F', 'red') color.write('F', 'red')