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

Unified Diff: scripts/slave/recipe_modules/chromium_tests/chromium_perf.py

Issue 1764693003: [Android] Add ability to configure known devices file for perf tests to android/perf.py (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: make .known_devices default Created 4 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
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/chromium_tests/steps.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/recipe_modules/chromium_tests/chromium_perf.py
diff --git a/scripts/slave/recipe_modules/chromium_tests/chromium_perf.py b/scripts/slave/recipe_modules/chromium_tests/chromium_perf.py
index 6bd0de17db475ea0b12aa519b3d53bfb0fb264f4..42a7438cb9ba9739ef1d9193f71ae2f11465d947 100644
--- a/scripts/slave/recipe_modules/chromium_tests/chromium_perf.py
+++ b/scripts/slave/recipe_modules/chromium_tests/chromium_perf.py
@@ -95,7 +95,7 @@ def _AddBuildSpec(name, platform, target_bits=64):
def _AddTestSpec(name, perf_id, platform, target_bits=64,
max_battery_temp=350, num_host_shards=1, num_device_shards=1,
- known_devices_file=None):
+ known_devices_file='.known_devices'):
parent_builder = _builders[platform][target_bits]
for shard_index in xrange(num_host_shards):
builder_name = '%s (%d)' % (name, shard_index + 1)
@@ -113,26 +113,19 @@ _AddBuildSpec('Linux Builder', 'linux')
_AddTestSpec('Android Galaxy S5 Perf', 'android-galaxy-s5', 'android',
- target_bits=32, num_device_shards=7, num_host_shards=3,
- known_devices_file='.known_devices')
+ target_bits=32, num_device_shards=7, num_host_shards=3)
_AddTestSpec('Android Nexus5 Perf', 'android-nexus5', 'android',
- target_bits=32, num_device_shards=7, num_host_shards=3,
- known_devices_file='.known_devices')
+ target_bits=32, num_device_shards=7, num_host_shards=3)
_AddTestSpec('Android Nexus5X Perf', 'android-nexus5X', 'android',
- target_bits=32, num_device_shards=7, num_host_shards=3,
- known_devices_file='.known_devices')
+ target_bits=32, num_device_shards=7, num_host_shards=3)
_AddTestSpec('Android Nexus6 Perf', 'android-nexus6', 'android',
- target_bits=32, num_device_shards=7, num_host_shards=3,
- known_devices_file='.known_devices')
+ target_bits=32, num_device_shards=7, num_host_shards=3)
_AddTestSpec('Android Nexus7v2 Perf', 'android-nexus7v2', 'android',
- target_bits=32, num_device_shards=7, num_host_shards=3,
- known_devices_file='.known_devices')
+ target_bits=32, num_device_shards=7, num_host_shards=3)
_AddTestSpec('Android Nexus9 Perf', 'android-nexus9', 'android',
- num_device_shards=7, num_host_shards=3,
- known_devices_file='.known_devices')
+ num_device_shards=7, num_host_shards=3)
_AddTestSpec('Android One Perf', 'android-one', 'android',
- target_bits=32, num_device_shards=7, num_host_shards=3,
- known_devices_file='.known_devices')
+ target_bits=32, num_device_shards=7, num_host_shards=3)
_AddTestSpec('Win Zenbook Perf', 'win-zenbook', 'win',
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/chromium_tests/steps.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698