OLD | NEW |
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 Loading... |
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 ) |
OLD | NEW |