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

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

Issue 2498553004: Add support for Junit tests in platform mode. (Closed)
Patch Set: Add support for Junit tests in platform mode. Created 4 years, 1 month 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 fe8a1329a8dcca106132aee8051f804caeb0abbb..fcbffef0833711b7261b3e0149821596ccccb810 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
@@ -334,11 +334,13 @@ class LocalDevicePerfTestRun(local_device_test_run.LocalDeviceTestRun):
self._test_instance = test_instance
self._timeout = None if test_instance.no_timeout else self._DEFAULT_TIMEOUT
+ #override
def SetUp(self):
if os.path.exists(constants.PERF_OUTPUT_DIR):
shutil.rmtree(constants.PERF_OUTPUT_DIR)
os.makedirs(constants.PERF_OUTPUT_DIR)
+ #override
def TearDown(self):
pass

Powered by Google App Engine
This is Rietveld 408576698