Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(103)

Unified Diff: build/android/pylib/local/device/local_device_test_run.py

Issue 938883002: [Android] Rework instrumentation test skipping and result generation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 8c322cb8d262283317327d19a190e1f210fd693d..fa24eb10e26df4eb3a537d457d23c0146da32283 100644
--- a/build/android/pylib/local/device/local_device_test_run.py
+++ b/build/android/pylib/local/device/local_device_test_run.py
@@ -70,10 +70,11 @@ class LocalDeviceTestRun(test_run.TestRun):
if unknown_tests:
results.AddResults(
base_test_result.BaseTestResult(
- t, base_test_result.ResultType.UNKNOWN)
- for t in tests)
+ u, base_test_result.ResultType.UNKNOWN)
+ for u in unknown_tests)
if failed_tests:
results.AddResults(all_fail_results[f] for f in failed_tests)
+
return results
def GetTool(self, device):

Powered by Google App Engine
This is Rietveld 408576698