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

Unified Diff: tools/telemetry/telemetry/core/platform/profiler/android_systrace_profiler_unittest.py

Issue 902763002: Parallelize telemetry unit tests on Android bots (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove fyi bot config (will create another CL for it) Created 5 years, 10 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: tools/telemetry/telemetry/core/platform/profiler/android_systrace_profiler_unittest.py
diff --git a/tools/telemetry/telemetry/core/platform/profiler/android_systrace_profiler_unittest.py b/tools/telemetry/telemetry/core/platform/profiler/android_systrace_profiler_unittest.py
index 158f1dae5a783fa11c0b40d0d34062f0e108e160..1af31ff1ed835d74b74c4dbe4999373079660ce1 100644
--- a/tools/telemetry/telemetry/core/platform/profiler/android_systrace_profiler_unittest.py
+++ b/tools/telemetry/telemetry/core/platform/profiler/android_systrace_profiler_unittest.py
@@ -21,7 +21,8 @@ class TestAndroidSystraceProfiler(tab_test_case.TabTestCase):
self._browser._browser_backend,
self._browser._platform_backend,
os.path.join(out_dir, 'systrace'),
- {})
+ {},
+ self._device)
result = profiler.CollectProfile()[0]
self.assertTrue(zipfile.is_zipfile(result))
with zipfile.ZipFile(result) as z:

Powered by Google App Engine
This is Rietveld 408576698