Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(171)

Unified Diff: scripts/slave/recipes/ios/try.py

Issue 2187253003: Fix applying non-chromium patches to ios trybots (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Fix Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 (
+ 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):
],
})
)
-
-

Powered by Google App Engine
This is Rietveld 408576698