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

Unified Diff: scripts/slave/recipes/android/perf.py

Issue 2018003002: New chromium.perf.fyi bots! Mac Retina and Android Galaxy S5. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Fix expectations. Created 4 years, 7 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: scripts/slave/recipes/android/perf.py
diff --git a/scripts/slave/recipes/android/perf.py b/scripts/slave/recipes/android/perf.py
index 4a93007ca621356511e17b245219b5736eabb77f..2314ebb23658d1393a86b0ae3921434a919cb7bd 100644
--- a/scripts/slave/recipes/android/perf.py
+++ b/scripts/slave/recipes/android/perf.py
@@ -92,8 +92,21 @@ def _ChromiumPerfTesters():
master_spec.update(spec)
return master_spec
+def _ChromiumPerfFyiTesters():
+ testers = [
+ _CreateTestSpec('Android Galaxy S5 Perf', 'android-galaxy-s5',
+ required_apks=['ChromePublic.apk'], num_device_shards=7,
+ num_host_shards=1, target_bits=32),
+ ]
+
+ master_spec = {}
+ for spec in testers:
+ master_spec.update(spec)
+ return master_spec
+
BUILDERS = freeze({
'chromium.perf': _ChromiumPerfTesters(),
+ 'chromium.perf.fyi': _ChromiumPerfFyiTesters(),
})

Powered by Google App Engine
This is Rietveld 408576698