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

Unified Diff: build/android/pylib/local/device/local_device_perf_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_perf_test_run.py
diff --git a/build/android/pylib/local/device/local_device_perf_test_run.py b/build/android/pylib/local/device/local_device_perf_test_run.py
index 2ac8b0fd6d5dd7b4da58aa280f564f4aef2ab263..b3d6b8931cf33f7a5b583549fb883e70a6c3b72e 100644
--- a/build/android/pylib/local/device/local_device_perf_test_run.py
+++ b/build/android/pylib/local/device/local_device_perf_test_run.py
@@ -345,8 +345,9 @@ class LocalDevicePerfTestRun(local_device_test_run.LocalDeviceTestRun):
_DEFAULT_TIMEOUT = 5 * 60 * 60 # 5 hours.
_CONFIG_VERSION = 1
- def __init__(self, env, test_instance):
- super(LocalDevicePerfTestRun, self).__init__(env, test_instance)
+ def __init__(self, env, test_instance, test_output_saver):
+ super(LocalDevicePerfTestRun, self).__init__(
+ env, test_instance, test_output_saver)
self._devices = None
self._env = env
self._no_device_tests = {}

Powered by Google App Engine
This is Rietveld 408576698