| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 'ios', | 6 'ios', |
| 7 'recipe_engine/platform', | 7 'recipe_engine/platform', |
| 8 'recipe_engine/properties', | 8 'recipe_engine/properties', |
| 9 ] | 9 ] |
| 10 | 10 |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 }, | 47 }, |
| 48 { | 48 { |
| 49 'app': 'fake tests 2', | 49 'app': 'fake tests 2', |
| 50 'device type': 'fake device', | 50 'device type': 'fake device', |
| 51 'os': '7.1', | 51 'os': '7.1', |
| 52 }, | 52 }, |
| 53 { | 53 { |
| 54 'app': 'fake_eg_test_host', | 54 'app': 'fake_eg_test_host', |
| 55 'device type': 'fake device 3', | 55 'device type': 'fake device 3', |
| 56 'os': '9.3', | 56 'os': '9.3', |
| 57 'xctest': True, | 57 'xctest': 'fake_eg_test', |
| 58 }, | 58 }, |
| 59 ], | 59 ], |
| 60 }) | 60 }) |
| 61 ) | 61 ) |
| 62 | 62 |
| 63 yield ( | 63 yield ( |
| 64 api.test('no_tests') | 64 api.test('no_tests') |
| 65 + api.platform('mac', 64) | 65 + api.platform('mac', 64) |
| 66 + api.properties( | 66 + api.properties( |
| 67 buildername='ios', | 67 buildername='ios', |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 244 ) | 244 ) |
| 245 + api.step_data( | 245 + api.step_data( |
| 246 'fake tests 3 (fake device iOS 8.1)', | 246 'fake tests 3 (fake device iOS 8.1)', |
| 247 retcode=1 | 247 retcode=1 |
| 248 ) | 248 ) |
| 249 + api.step_data( | 249 + api.step_data( |
| 250 'fake tests 5 (fake device iOS 8.1)', | 250 'fake tests 5 (fake device iOS 8.1)', |
| 251 retcode=2 | 251 retcode=2 |
| 252 ) | 252 ) |
| 253 ) | 253 ) |
| OLD | NEW |