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

Side by Side Diff: scripts/slave/recipes/chromium.py

Issue 873403002: Add support for cc_perftests and other non-telemetry gtest based tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Rebase again + coverage. Created 5 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 unified diff | Download patch
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 DEPS = [ 5 DEPS = [
6 'adb', 6 'adb',
7 'bisect_tester', 7 'bisect_tester',
8 'chromium', 8 'chromium',
9 'chromium_android', 9 'chromium_android',
10 'chromium_tests', 10 'chromium_tests',
(...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after
360 api.properties.generic(mastername='chromium.perf', 360 api.properties.generic(mastername='chromium.perf',
361 buildername='Linux Perf (1)', 361 buildername='Linux Perf (1)',
362 parent_buildername='Linux Builder', 362 parent_buildername='Linux Builder',
363 buildnumber=0) + 363 buildnumber=0) +
364 api.platform('linux', 64) + 364 api.platform('linux', 64) +
365 api.override_step_data( 365 api.override_step_data(
366 'blink_perf.all.release', 366 'blink_perf.all.release',
367 api.json.output([]), 367 api.json.output([]),
368 retcode=1) 368 retcode=1)
369 ) 369 )
370
371 yield (
372 api.test('dynamic_script_test_with_args') +
373 api.properties.generic(mastername='chromium.linux',
374 buildername='Linux Tests',
375 parent_buildername='Linux Builder') +
376 api.platform('linux', 64) +
377 api.override_step_data('read test spec', api.json.output({
378 'Linux Tests': {
379 "scripts": [
380 {
381 "name": "media_perftests",
382 "script": "gtest_perf_test.py",
383 "args": ["media_perftests", "--single-process-tests"]
384 },
385 ],
386 },
387 }))
388 )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698