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

Unified Diff: build/android/pylib/local/device/local_device_monkey_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_monkey_test_run.py
diff --git a/build/android/pylib/local/device/local_device_monkey_test_run.py b/build/android/pylib/local/device/local_device_monkey_test_run.py
index a59b67249c9de684196a0a6d32e8c42440614da2..1cb40e44a8a08f3c86a1a0c247b0f7ea07ddbb65 100644
--- a/build/android/pylib/local/device/local_device_monkey_test_run.py
+++ b/build/android/pylib/local/device/local_device_monkey_test_run.py
@@ -14,8 +14,9 @@ from pylib.local.device import local_device_test_run
_CHROME_PACKAGE = constants.PACKAGE_INFO['chrome'].package
class LocalDeviceMonkeyTestRun(local_device_test_run.LocalDeviceTestRun):
- def __init__(self, env, test_instance):
- super(LocalDeviceMonkeyTestRun, self).__init__(env, test_instance)
+ def __init__(self, env, test_instance, test_output_saver):
+ super(LocalDeviceMonkeyTestRun, self).__init__(
+ env, test_instance, test_output_saver)
def TestPackage(self):
return 'monkey'

Powered by Google App Engine
This is Rietveld 408576698