Chromium Code Reviews| Index: scripts/slave/recipes/ios/try.py |
| diff --git a/scripts/slave/recipes/ios/try.py b/scripts/slave/recipes/ios/try.py |
| index 938bcac00f88c89d5278eecc18f9c87ae344b34b..8ec427d9579bab519d5d0b200fae2d328b138ecc 100644 |
| --- a/scripts/slave/recipes/ios/try.py |
| +++ b/scripts/slave/recipes/ios/try.py |
| @@ -79,6 +79,40 @@ def GenTests(api): |
| }) |
| ) |
| + # The same test as above but applying an icu patch. |
| + yield ( |
|
Michael Achenbach
2016/07/28 12:52:25
This deserves a refactoring, but I saw that most t
|
| + api.test('icu_patch') |
| + + api.platform('mac', 64) |
| + + api.properties(patch_url='patch url') |
| + + api.properties( |
| + buildername='ios-simulator', |
| + buildnumber='0', |
| + issue=123456, |
| + mastername='tryserver.fake', |
| + patchset=1, |
| + patch_project='icu', |
| + rietveld='fake://rietveld.url', |
| + slavename='fake-vm', |
| + ) |
| + + api.ios.make_test_build_config({ |
| + 'xcode version': 'fake xcode version', |
| + 'GYP_DEFINES': { |
| + 'fake gyp define 1': 'fake value 1', |
| + 'fake gyp define 2': 'fake value 2', |
| + }, |
| + 'compiler': 'ninja', |
| + 'configuration': 'Debug', |
| + 'sdk': 'iphonesimulator8.0', |
| + 'tests': [ |
| + { |
| + 'app': 'fake tests', |
| + 'device type': 'fake device', |
| + 'os': '8.1', |
| + }, |
| + ], |
| + }) |
| + ) |
| + |
| yield ( |
| api.test('parent') |
| + api.platform('mac', 64) |
| @@ -257,5 +291,3 @@ def GenTests(api): |
| ], |
| }) |
| ) |
| - |
| - |