| Index: scripts/slave/recipes/chromium.py
|
| diff --git a/scripts/slave/recipes/chromium.py b/scripts/slave/recipes/chromium.py
|
| index 4f4b25e15716af473bcfffa09e1899325eadfbf6..27f9db7cd0dd703406591d82ad411f9b04c40a22 100644
|
| --- a/scripts/slave/recipes/chromium.py
|
| +++ b/scripts/slave/recipes/chromium.py
|
| @@ -367,3 +367,22 @@ def GenTests(api):
|
| api.json.output([]),
|
| retcode=1)
|
| )
|
| +
|
| + yield (
|
| + api.test('dynamic_script_test_with_args') +
|
| + api.properties.generic(mastername='chromium.linux',
|
| + buildername='Linux Tests',
|
| + parent_buildername='Linux Builder') +
|
| + api.platform('linux', 64) +
|
| + api.override_step_data('read test spec', api.json.output({
|
| + 'Linux Tests': {
|
| + "scripts": [
|
| + {
|
| + "name": "media_perftests",
|
| + "script": "gtest_perf_test.py",
|
| + "args": ["media_perftests", "--single-process-tests"]
|
| + },
|
| + ],
|
| + },
|
| + }))
|
| + )
|
|
|