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

Unified Diff: scripts/slave/recipe_modules/ios/api.py

Issue 2221923002: ios: fix path to the test app (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 4 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/recipe_modules/ios/api.py
diff --git a/scripts/slave/recipe_modules/ios/api.py b/scripts/slave/recipe_modules/ios/api.py
index 676dcadbe8d9d159eb69a70c62714ecc0f14a2b7..09f0615bd6d33ef4dd2805d0f7a18c7fc38c1919 100644
--- a/scripts/slave/recipe_modules/ios/api.py
+++ b/scripts/slave/recipe_modules/ios/api.py
@@ -390,7 +390,7 @@ class iOSApi(recipe_api.RecipeApi):
cmd = [
self.package_repo_resource(
'scripts', 'slave', 'ios', 'run.py'),
- '--app', self.m.path['slave_build'].join(
+ '--app', self.m.path.join(
Sergiy Byelozyorov 2016/08/08 14:32:49 nit: please fix whitespace before '--app'
Paweł Hajdan Jr. 2016/08/08 14:40:30 It's already aligned. Discussed over IM.
Sergiy Byelozyorov 2016/08/08 14:40:47 my bad... this is actually correct spacing, please
Sergiy Byelozyorov 2016/08/08 14:41:44 this is just imho, so up to you
self.most_recent_app_dir,
'%s.app' % test['app'],
),
@@ -724,8 +724,7 @@ class iOSApi(recipe_api.RecipeApi):
'simulator': 'iphonesimulator',
}[self.platform]
- return self.m.path.join(
- 'src',
+ return self.m.path['checkout'].join(
build_dir,
'%s-%s' % (self.configuration, platform),
)

Powered by Google App Engine
This is Rietveld 408576698