| Index: build/android/pylib/local/device/local_device_test_run.py
|
| diff --git a/build/android/pylib/local/device/local_device_test_run.py b/build/android/pylib/local/device/local_device_test_run.py
|
| index 53d6f174f4262b2e6affde55411b1eab2c1fb08f..1f1686b78d0a0a76c73ce4470e2de9e48d2997fc 100644
|
| --- a/build/android/pylib/local/device/local_device_test_run.py
|
| +++ b/build/android/pylib/local/device/local_device_test_run.py
|
| @@ -61,7 +61,7 @@ class LocalDeviceTestRun(test_run.TestRun):
|
| tests = [t for t in tests if self._GetTestName(t) not in results_names]
|
| tries += 1
|
|
|
| - all_unknown_test_names = set(tests)
|
| + all_unknown_test_names = set(self._GetTestName(t) for f in tests)
|
| all_failed_test_names = set(all_fail_results.iterkeys())
|
|
|
| unknown_tests = all_unknown_test_names.difference(all_failed_test_names)
|
|
|