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
1 changed files with 1 additions and 1 deletions

View File

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