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

Side by Side Diff: scripts/slave/recipe_modules/auto_bisect/example.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: You know, expectations and stuff. Created 4 years, 4 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
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 import json 5 import json
6 6
7 DEPS = [ 7 DEPS = [
8 'auto_bisect', 8 'auto_bisect',
9 'chromium_tests', 9 'chromium_tests',
10 'recipe_engine/json', 10 'recipe_engine/json',
(...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after
337 "'src/third_party/WebKit': 'webkit.git@010'}"), 337 "'src/third_party/WebKit': 'webkit.git@010'}"),
338 'DEPS_interval': {'v8': '002 003 004'.split()}, 338 'DEPS_interval': {'v8': '002 003 004'.split()},
339 }, 339 },
340 ] 340 ]
341 341
342 342
343 def _make_test(api, test_data, test_name, platform='linux', extra_config=None): 343 def _make_test(api, test_data, test_name, platform='linux', extra_config=None):
344 basic_test = api.test(test_name) 344 basic_test = api.test(test_name)
345 basic_test += api.properties(mastername='tryserver.chromium.perf', 345 basic_test += api.properties(mastername='tryserver.chromium.perf',
346 buildername='linux_perf_bisect', 346 buildername='linux_perf_bisect',
347 slavename='dummyslave') 347 slavename='dummyslave',
348 buildnumber=123456)
348 basic_test += _get_revision_range_step_data(api, test_data) 349 basic_test += _get_revision_range_step_data(api, test_data)
349 for revision_data in test_data: 350 for revision_data in test_data:
350 for step_data in _get_step_data_for_revision(api, revision_data): 351 for step_data in _get_step_data_for_revision(api, revision_data):
351 basic_test += step_data 352 basic_test += step_data
352 if 'win_x64' in platform: 353 if 'win_x64' in platform:
353 basic_test += api.properties(bisect_config=_get_config({ 354 basic_test += api.properties(bisect_config=_get_config({
354 'command': ('src/tools/perf/run_benchmark -v --browser=release_x64' 355 'command': ('src/tools/perf/run_benchmark -v --browser=release_x64'
355 ' smoothness.tough_scrolling_cases'), 356 ' smoothness.tough_scrolling_cases'),
356 'recipe_tester_name': 'chromium_rel_win7_x64'})) 357 'recipe_tester_name': 'chromium_rel_win7_x64'}))
357 elif 'win' in platform: 358 elif 'win' in platform:
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
457 yield api.step_data(step_name, stdout=api.raw_io.output(file_hash)) 458 yield api.step_data(step_name, stdout=api.raw_io.output(file_hash))
458 step_name = 'Expanding revision range for revision %s on depot %s' 459 step_name = 'Expanding revision range for revision %s on depot %s'
459 step_name %= (interval[-1], depot_name) 460 step_name %= (interval[-1], depot_name)
460 stdout = api.json.output([(r, 0) for r in interval[:-1]]) 461 stdout = api.json.output([(r, 0) for r in interval[:-1]])
461 yield api.step_data(step_name, stdout=stdout) 462 yield api.step_data(step_name, stdout=stdout)
462 463
463 if 'cl_info' in revision_data: 464 if 'cl_info' in revision_data:
464 step_name = 'Reading culprit cl information.' 465 step_name = 'Reading culprit cl information.'
465 stdout = api.json.output(revision_data['cl_info']) 466 stdout = api.json.output(revision_data['cl_info'])
466 yield api.step_data(step_name, stdout=stdout) 467 yield api.step_data(step_name, stdout=stdout)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698