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

Unified Diff: build/android/pylib/local/machine/local_machine_junit_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/machine/local_machine_junit_test_run.py
diff --git a/build/android/pylib/local/machine/local_machine_junit_test_run.py b/build/android/pylib/local/machine/local_machine_junit_test_run.py
index 20d13994c31b93a4506c6edd841334de69f90d45..d49b9792cffe342d815c9cf4e3a983dde905deb7 100644
--- a/build/android/pylib/local/machine/local_machine_junit_test_run.py
+++ b/build/android/pylib/local/machine/local_machine_junit_test_run.py
@@ -16,8 +16,9 @@ from py_utils import tempfile_ext
class LocalMachineJunitTestRun(test_run.TestRun):
- def __init__(self, env, test_instance):
- super(LocalMachineJunitTestRun, self).__init__(env, test_instance)
+ def __init__(self, env, test_instance, test_output_saver):
+ super(LocalMachineJunitTestRun, self).__init__(
+ env, test_instance, test_output_saver)
#override
def TestPackage(self):

Powered by Google App Engine
This is Rietveld 408576698