Chromium Code Reviews| Index: scripts/slave/recipes/v8.py |
| diff --git a/scripts/slave/recipes/v8.py b/scripts/slave/recipes/v8.py |
| index 4c969316865efb605aedbb250ae82586c59eca5a..618fcdf1da0ed5f12c36ac561b3696ea027d98e6 100644 |
| --- a/scripts/slave/recipes/v8.py |
| +++ b/scripts/slave/recipes/v8.py |
| @@ -2,6 +2,8 @@ |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| +from recipe_engine.post_process import Filter |
| + |
| DEPS = [ |
| 'archive', |
| 'chromium', |
| @@ -121,7 +123,8 @@ def GenTests(api): |
| 'V8 Linux', |
| 'swarming_collect_failure', |
| ) + |
| - api.step_data('Check', retcode=1) |
| + api.step_data('Check', retcode=1) + |
| + api.post_process(Filter('Check', 'Test262', '$result')) |
| ) |
|
tandrii(chromium)
2016/11/02 23:08:58
and that's it? wow!
|
| # Simulate a tryjob triggered by the CQ for setting up different swarming |