| Index: mojo/tools/run_mojo_python_tests.py
|
| diff --git a/mojo/tools/run_mojo_python_tests.py b/mojo/tools/run_mojo_python_tests.py
|
| index da9ab63f5923fa346ac34969e9c20e5eea2f7468..6adac58b8706687ec69dbe9a3061f7837574f73e 100755
|
| --- a/mojo/tools/run_mojo_python_tests.py
|
| +++ b/mojo/tools/run_mojo_python_tests.py
|
| @@ -95,10 +95,13 @@ def _FullResults(suite, result, metadata):
|
| full_results['tests'] = {}
|
|
|
| for test_name in all_test_names:
|
| - value = {
|
| - 'expected': 'PASS',
|
| - 'actual': 'FAIL' if (test_name in failed_test_names) else 'PASS',
|
| - }
|
| + value = {}
|
| + value['expected'] = 'PASS'
|
| + if test_name in failed_test_names:
|
| + value['actual'] = 'FAIL'
|
| + value['is_unexpected'] = True
|
| + else:
|
| + value['actual'] = 'PASS'
|
| _AddPathToTrie(full_results['tests'], test_name, value)
|
|
|
| return full_results
|
|
|