Chromium Code Reviews| Index: build/android/pylib/local/device/local_device_gtest_run.py |
| diff --git a/build/android/pylib/local/device/local_device_gtest_run.py b/build/android/pylib/local/device/local_device_gtest_run.py |
| index e2c6a882e2fd1016b7d35cd3df0f3e1038ab5f72..ff516db43b25ffc02b2cdeec9ed6bb54c7a6a68e 100644 |
| --- a/build/android/pylib/local/device/local_device_gtest_run.py |
| +++ b/build/android/pylib/local/device/local_device_gtest_run.py |
| @@ -422,7 +422,9 @@ class LocalDeviceGtestRun(local_device_test_run.LocalDeviceTestRun): |
| include_stack_symbols=False, |
| wipe_tombstones=True)) |
| result.SetTombstones(resolved_tombstones) |
| - return results |
| + |
| + not_run_tests = set(test).difference(set(r.GetName() for r in results)) |
|
mikecase (-- gone --)
2016/12/01 20:42:08
Could you explain this a bit. I thought you would
jbudorick
2016/12/02 01:45:21
At this point, results contains only what we were
|
| + return results, not_run_tests |
| #override |
| def TearDown(self): |