| 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 97cec49aa42314784c74bf37eb21b71341144b71..dc54d900001cf3df1f68f4667c90b4a0451ebf3b 100644
|
| --- a/build/android/pylib/local/device/local_device_gtest_run.py
|
| +++ b/build/android/pylib/local/device/local_device_gtest_run.py
|
| @@ -424,7 +424,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))
|
| + return results, not_run_tests
|
|
|
| #override
|
| def TearDown(self):
|
|
|