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

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

Issue 2131993003: android: use common known_devices_file path from chromium_android (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 5 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 9329260a5c94852271ef140a1a2a2f4016479a1f..a65f32824a29966c21214bdf172224f85ce4de3b 100644
--- a/scripts/slave/recipe_modules/chromium_tests/chromium_perf.py
+++ b/scripts/slave/recipe_modules/chromium_tests/chromium_perf.py
@@ -69,8 +69,7 @@ def _BuildSpec(platform, target_bits):
def _TestSpec(parent_builder, perf_id, platform, target_bits, max_battery_temp,
- shard_index, num_host_shards, num_device_shards,
- known_devices_file):
+ shard_index, num_host_shards, num_device_shards):
spec = _BaseSpec(
bot_type='tester',
chromium_apply_config=['chromium_perf'],
@@ -81,7 +80,7 @@ def _TestSpec(parent_builder, perf_id, platform, target_bits, max_battery_temp,
tests=[steps.DynamicPerfTests(
perf_id, platform, target_bits, max_battery_temp=max_battery_temp,
num_device_shards=num_device_shards, num_host_shards=num_host_shards,
- shard_index=shard_index, known_devices_file=known_devices_file)],
+ shard_index=shard_index)],
)
spec['parent_buildername'] = parent_builder
@@ -106,14 +105,13 @@ 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='.known_devices'):
+ max_battery_temp=350, num_host_shards=1, num_device_shards=1):
parent_builder = _builders[platform][target_bits]
for shard_index in xrange(num_host_shards):
builder_name = '%s (%d)' % (name, shard_index + 1)
SPEC['builders'][builder_name] = _TestSpec(
parent_builder, perf_id, platform, target_bits, max_battery_temp,
- shard_index, num_host_shards, num_device_shards, known_devices_file)
+ shard_index, num_host_shards, num_device_shards)
_AddBuildSpec('Android Builder', 'android', target_bits=32)
« 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