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

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

Issue 2234893002: ios: fix cwd for git diff (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 ff6fc09f601ad99e2e058217dc48ee2e08f8626f..dad84afce469e5482045acc97e0dd48d5f0373cf 100644
--- a/scripts/slave/recipe_modules/ios/api.py
+++ b/scripts/slave/recipe_modules/ios/api.py
@@ -340,7 +340,8 @@ class iOSApi(recipe_api.RecipeApi):
self.compiler == 'ninja' and
self.m.tryserver.is_tryserver and
'without patch' not in suffix):
- affected_files = self.m.chromium_tests.get_files_affected_by_patch()
+ affected_files = self.m.chromium_tests.get_files_affected_by_patch(
+ cwd=self.m.path['checkout'])
# The same test may be configured to run on multiple simulators.
# Only specify each test once for the analyzer.
tests = list(set(test['app'] for test in self.__config['tests']))
« no previous file with comments | « scripts/slave/recipe_modules/chromium_tests/api.py ('k') | scripts/slave/recipes/ios/try.expected/basic.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698