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

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

Issue 2270563005: Clean up some discrepancies in the perf recipe configs (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Rebase. Created 4 years, 3 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/recipe_modules/chromium_tests/chromium_perf_fyi.py
diff --git a/scripts/slave/recipe_modules/chromium_tests/chromium_perf_fyi.py b/scripts/slave/recipe_modules/chromium_tests/chromium_perf_fyi.py
index e868cbc99e3c75f07140fb16294b2bb829faf3d8..b5200e96d37f4f70d86d73d0e1b2d03e8d7a7616 100644
--- a/scripts/slave/recipe_modules/chromium_tests/chromium_perf_fyi.py
+++ b/scripts/slave/recipe_modules/chromium_tests/chromium_perf_fyi.py
@@ -33,36 +33,25 @@ def _AddBuildSpec(name, perf_id, platform, config_name='chromium_perf',
def _AddTestSpec(name, perf_id, platform,
- parent_builder=None, target_bits=64):
- parent_buildername = (parent_builder or
- chromium_perf.builders[platform][target_bits])
- spec = chromium_perf.TestSpec('chromium_perf', parent_buildername, perf_id,
- platform, target_bits, 0, 1, 1)
- if not parent_builder:
+ parent_buildername=None, target_bits=64):
+ tests = [steps.DynamicPerfTests(
+ perf_id, platform, target_bits,
+ num_device_shards=1, num_host_shards=1, shard_index=0)]
+
+ spec = chromium_perf.TestSpec(
+ 'chromium_perf', platform, target_bits,
+ parent_buildername=parent_buildername, tests=tests)
+ if not parent_buildername:
spec['parent_mastername'] = 'chromium.perf'
- spec['disable_tests'] = True
- SPEC['builders'][name] = spec
+ SPEC['builders'][name] = spec
-def _AddIsolatedTestSpec(name, platform, parent_builder=None, target_bits=64):
- spec = {
- 'bot_type': 'tester',
- 'chromium_config': 'chromium_perf',
- 'chromium_config_kwargs': {
- 'BUILD_CONFIG': 'Release',
- 'TARGET_BITS': target_bits,
- },
- 'gclient_config': 'chromium_perf',
- 'testing': {
- 'platform': 'linux' if platform == 'android' else platform,
- },
- 'parent_buildername': parent_builder,
- 'test_generators': [steps.generate_isolated_script],
- 'test_spec_file': 'chromium.perf.fyi.json',
- 'enable_swarming': True,
- 'parent_mastername': 'chromium.perf',
- }
+def _AddIsolatedTestSpec(name, platform, target_bits=64):
+ spec = chromium_perf.TestSpec('chromium_perf', platform, target_bits)
+ spec['parent_mastername'] = 'chromium.perf'
+ spec['enable_swarming'] = True
+ spec['test_generators'] = [steps.generate_isolated_script]
SPEC['builders'][name] = spec
@@ -83,10 +72,8 @@ _AddTestSpec('Mac Test Retina Perf', 'mac-test-retina', 'mac')
_AddBuildSpec('Win Clang Builder', 'win-clang-builder', 'win',
config_name='chromium_perf_clang', target_bits=32)
_AddTestSpec('Win Clang Perf', 'chromium-win-clang', 'win',
- parent_builder='Win Clang Builder', target_bits=32)
+ parent_buildername='Win Clang Builder', target_bits=32)
-_AddIsolatedTestSpec('Win 10 Low-End 2 Core Perf', 'win',
- parent_builder='Win x64 Builder')
-_AddIsolatedTestSpec('Win 10 Low-End 4 Core Perf', 'win',
- parent_builder='Win x64 Builder')
+_AddIsolatedTestSpec('Win 10 Low-End 2 Core Perf', 'win')
+_AddIsolatedTestSpec('Win 10 Low-End 4 Core Perf', 'win')
« no previous file with comments | « scripts/slave/recipe_modules/chromium_tests/chromium_perf.py ('k') | scripts/slave/recipe_modules/chromium_tests/steps.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698