| 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 'archive', | 6 'archive', |
| 7 'chromium', | 7 'chromium', |
| 8 'gclient', | 8 'gclient', |
| 9 'recipe_engine/json', | 9 'recipe_engine/json', |
| 10 'recipe_engine/path', | 10 'recipe_engine/path', |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 'client.v8', | 186 'client.v8', |
| 187 'V8 Linux - isolates', | 187 'V8 Linux - isolates', |
| 188 'one_failure', | 188 'one_failure', |
| 189 ) + | 189 ) + |
| 190 api.override_step_data('Check', api.v8.one_failure()) | 190 api.override_step_data('Check', api.v8.one_failure()) |
| 191 ) | 191 ) |
| 192 | 192 |
| 193 yield ( | 193 yield ( |
| 194 api.v8.test( | 194 api.v8.test( |
| 195 'client.v8', | 195 'client.v8', |
| 196 'V8 Linux - memcheck', | |
| 197 'no_errors', | |
| 198 ) + | |
| 199 api.v8.stderr( | |
| 200 'Simple Leak Check', | |
| 201 'no leaks are possible', | |
| 202 ) | |
| 203 ) | |
| 204 | |
| 205 yield ( | |
| 206 api.v8.test( | |
| 207 'client.v8', | |
| 208 'V8 Fuzzer', | 196 'V8 Fuzzer', |
| 209 'fuzz_archive', | 197 'fuzz_archive', |
| 210 ) + | 198 ) + |
| 211 api.v8.stdout( | 199 api.v8.stdout( |
| 212 'Fuzz', | 200 'Fuzz', |
| 213 'foo\nCreating archive bar\nbaz', | 201 'foo\nCreating archive bar\nbaz', |
| 214 retcode=1, | 202 retcode=1, |
| 215 ) | 203 ) |
| 216 ) | 204 ) |
| 217 | 205 |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 338 api.v8.test( | 326 api.v8.test( |
| 339 'client.v8', | 327 'client.v8', |
| 340 'V8 Linux - predictable', | 328 'V8 Linux - predictable', |
| 341 'bisect_one_change', | 329 'bisect_one_change', |
| 342 ) + | 330 ) + |
| 343 api.v8.fail('Mjsunit') + | 331 api.v8.fail('Mjsunit') + |
| 344 api.override_step_data( | 332 api.override_step_data( |
| 345 'Bisect.Fetch changes', api.v8.example_one_buildbot_change()) + | 333 'Bisect.Fetch changes', api.v8.example_one_buildbot_change()) + |
| 346 api.time.step(120) | 334 api.time.step(120) |
| 347 ) | 335 ) |
| OLD | NEW |