Chromium Code Reviews| Index: scripts/slave/recipes/chromium_trybot.py | 
| diff --git a/scripts/slave/recipes/chromium_trybot.py b/scripts/slave/recipes/chromium_trybot.py | 
| index 1555cfe2bf6718a03db5e6fbc57a266e7a376d58..a543eb77b31b96b6e0d0c9043e7c6afe52c94533 100644 | 
| --- a/scripts/slave/recipes/chromium_trybot.py | 
| +++ b/scripts/slave/recipes/chromium_trybot.py | 
| @@ -5,6 +5,7 @@ | 
| import collections | 
| from recipe_engine.types import freeze | 
| +import json | 
| 
 
Sergiy Byelozyorov
2015/09/28 13:55:29
this is probably a debugging leftover, please remo
 
luqui
2015/09/28 17:33:34
Done.
 
 | 
| DEPS = [ | 
| 'amp', | 
| @@ -1366,6 +1367,25 @@ def GenTests(api): | 
| ) | 
| yield ( | 
| + api.test('telemetry_gpu_harness_failure') + | 
| + props( | 
| + mastername='tryserver.chromium.linux', | 
| + buildername='linux_chromium_rel_ng', | 
| + ) + | 
| + api.platform.name('linux') + | 
| + api.override_step_data( | 
| + 'maps_pixel_test on NVIDIA GPU on Linux (with patch) on Linux', | 
| + api.test_utils.canned_telemetry_gpu_output( | 
| + passing=False, is_win=False, swarming=True, | 
| + empty_per_page_values=True), | 
| + retcode=255) + | 
| + api.override_step_data('analyze', | 
| + api.json.output({'status': 'Found dependency', | 
| + 'targets': gpu_targets, | 
| + 'build_targets': gpu_targets})) | 
| + ) | 
| + | 
| + yield ( | 
| api.test('telemetry_gpu_swarming_error') + | 
| props( | 
| mastername='tryserver.chromium.mac', |