| Index: scripts/slave/recipes/chromium.py
|
| diff --git a/scripts/slave/recipes/chromium.py b/scripts/slave/recipes/chromium.py
|
| index 5dd6f0bdaa72b66ed0e30462e8cf4a9d99a82855..093df784e9836bd1b783e8a98e6c2d94262a68ad 100644
|
| --- a/scripts/slave/recipes/chromium.py
|
| +++ b/scripts/slave/recipes/chromium.py
|
| @@ -306,6 +306,32 @@ def GenTests(api):
|
| )
|
|
|
| yield (
|
| + api.test('dynamic_isolated_script_test_harness_failure_zero_retcode') +
|
| + api.properties.generic(mastername='chromium.linux',
|
| + buildername='Linux Tests',
|
| + parent_buildername='Linux Builder') +
|
| + api.properties(swarm_hashes={
|
| + 'telemetry_gpu_unittests': 'eeeeeeeeeeeeeeeeeeeeeeeeeeeeee',
|
| + }) +
|
| + api.platform('linux', 64) +
|
| + api.override_step_data('read test spec', api.json.output({
|
| + 'Linux Tests': {
|
| + 'isolated_scripts': [
|
| + {
|
| + 'isolate_name': 'telemetry_gpu_unittests',
|
| + 'name': 'telemetry_gpu_unittests',
|
| + },
|
| + ],
|
| + },
|
| + })) +
|
| + api.override_step_data('telemetry_gpu_unittests',
|
| + api.test_utils.canned_isolated_script_output(
|
| + passing=False, is_win=False, swarming=False,
|
| + isolated_script_passing=False, valid=False),
|
| + retcode=0)
|
| + )
|
| +
|
| + yield (
|
| api.test('build_dynamic_isolated_script_test_compile_target_overriden') +
|
| api.properties.generic(mastername='chromium.linux',
|
| buildername='Linux Builder') +
|
|
|