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

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

Issue 2933993002: Add local results details pages.
Patch Set: Add --local-output arg which enables local results detail pages. Created 3 years, 6 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 14c4366b05148d66d09d94926bb1ba98abd395a5..b5fe3021f172039cc236226896bedcfdae739bcf 100644
--- a/build/android/pylib/local/device/local_device_test_run.py
+++ b/build/android/pylib/local/device/local_device_test_run.py
@@ -67,8 +67,9 @@ class InvalidShardingSettings(Exception):
class LocalDeviceTestRun(test_run.TestRun):
- def __init__(self, env, test_instance):
- super(LocalDeviceTestRun, self).__init__(env, test_instance)
+ def __init__(self, env, test_instance, test_output_saver):
+ super(LocalDeviceTestRun, self).__init__(
+ env, test_instance, test_output_saver)
self._tools = {}
#override

Powered by Google App Engine
This is Rietveld 408576698