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

Side by Side Diff: scripts/slave/recipe_modules/chromium_tests/chromium_perf_fyi.py

Issue 2393263002: Fix chromium perf fyi tester triggering (Closed)
Patch Set: Created 4 years, 2 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 from . import chromium_perf 5 from . import chromium_perf
6 from . import steps 6 from . import steps
7 7
8 import DEPS 8 import DEPS
9 CHROMIUM_CONFIG_CTX = DEPS['chromium'].CONFIG_CTX 9 CHROMIUM_CONFIG_CTX = DEPS['chromium'].CONFIG_CTX
10 GCLIENT_CONFIG_CTX = DEPS['gclient'].CONFIG_CTX 10 GCLIENT_CONFIG_CTX = DEPS['gclient'].CONFIG_CTX
(...skipping 25 matching lines...) Expand all
36 parent_buildername=None, target_bits=64): 36 parent_buildername=None, target_bits=64):
37 tests = [steps.DynamicPerfTests( 37 tests = [steps.DynamicPerfTests(
38 perf_id, platform, target_bits, 38 perf_id, platform, target_bits,
39 num_device_shards=1, num_host_shards=1, shard_index=0)] 39 num_device_shards=1, num_host_shards=1, shard_index=0)]
40 40
41 spec = chromium_perf.TestSpec( 41 spec = chromium_perf.TestSpec(
42 'chromium_perf', perf_id, platform, target_bits, 42 'chromium_perf', perf_id, platform, target_bits,
43 parent_buildername=parent_buildername, tests=tests) 43 parent_buildername=parent_buildername, tests=tests)
44 if not parent_buildername: 44 if not parent_buildername:
45 spec['parent_mastername'] = 'chromium.perf' 45 spec['parent_mastername'] = 'chromium.perf'
46 else:
47 spec['parent_mastername'] = 'chromium.perf.fyi'
ghost stip (do not use) 2016/10/05 20:55:03 apparently only chromium.perf sets parent_buildern
46 48
47 SPEC['builders'][name] = spec 49 SPEC['builders'][name] = spec
48 50
49 51
50 def _AddIsolatedTestSpec(name, perf_id, platform, 52 def _AddIsolatedTestSpec(name, perf_id, platform,
51 parent_buildername, target_bits=64): 53 parent_buildername, target_bits=64):
52 spec = chromium_perf.TestSpec('chromium_perf', perf_id, platform, target_bits, 54 spec = chromium_perf.TestSpec('chromium_perf', perf_id, platform, target_bits,
53 parent_buildername=parent_buildername) 55 parent_buildername=parent_buildername)
54 spec['enable_swarming'] = True 56 spec['enable_swarming'] = True
55 SPEC['builders'][name] = spec 57 SPEC['builders'][name] = spec
(...skipping 14 matching lines...) Expand all
70 72
71 _AddTestSpec('Mac Power Dual-GPU Perf', 'mac-power-dual-gpu', 'mac') 73 _AddTestSpec('Mac Power Dual-GPU Perf', 'mac-power-dual-gpu', 'mac')
72 _AddTestSpec('Mac Power Low-End Perf', 'mac-power-low-end', 'mac') 74 _AddTestSpec('Mac Power Low-End Perf', 'mac-power-low-end', 'mac')
73 _AddTestSpec('Mac Test Retina Perf', 'mac-test-retina', 'mac') 75 _AddTestSpec('Mac Test Retina Perf', 'mac-test-retina', 'mac')
74 76
75 77
76 _AddBuildSpec('Win Clang Builder', 'win-clang-builder', 'win', 78 _AddBuildSpec('Win Clang Builder', 'win-clang-builder', 'win',
77 config_name='chromium_perf_clang', target_bits=32) 79 config_name='chromium_perf_clang', target_bits=32)
78 _AddTestSpec('Win Clang Perf', 'chromium-win-clang', 'win', 80 _AddTestSpec('Win Clang Perf', 'chromium-win-clang', 'win',
79 parent_buildername='Win Clang Builder', target_bits=32) 81 parent_buildername='Win Clang Builder', target_bits=32)
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698