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

Unified Diff: build/android/pylib/local/device/local_device_gtest_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_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 e4c6aef9acce277330b6bf49f0495c1be4f65d46..55eaf2bd4a6fd9724e7c39aae7316588ad1b3c2e 100644
--- a/build/android/pylib/local/device/local_device_gtest_run.py
+++ b/build/android/pylib/local/device/local_device_gtest_run.py
@@ -255,10 +255,11 @@ class _ExeDelegate(object):
class LocalDeviceGtestRun(local_device_test_run.LocalDeviceTestRun):
- def __init__(self, env, test_instance):
+ def __init__(self, env, test_instance, test_output_saver):
assert isinstance(env, local_device_environment.LocalDeviceEnvironment)
assert isinstance(test_instance, gtest_test_instance.GtestTestInstance)
- super(LocalDeviceGtestRun, self).__init__(env, test_instance)
+ super(LocalDeviceGtestRun, self).__init__(
+ env, test_instance, test_output_saver)
if self._test_instance.apk:
self._delegate = _ApkDelegate(self._test_instance)

Powered by Google App Engine
This is Rietveld 408576698