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

Unified Diff: scripts/slave/unittests/recipe_lint_test.py

Issue 1889743002: recipe lint test use custom recipe deps location. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 8 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/unittests/recipe_lint_test.py
diff --git a/scripts/slave/unittests/recipe_lint_test.py b/scripts/slave/unittests/recipe_lint_test.py
index de4ddc44b12b5fae4f855214a28e39115b758611..d8134076432ab1b23efe30e9fbbf08f70c2fcabc 100755
--- a/scripts/slave/unittests/recipe_lint_test.py
+++ b/scripts/slave/unittests/recipe_lint_test.py
@@ -7,7 +7,7 @@ import os
import sys
MODULES_WHITELIST = [
- # TODO(luqui): Move skia modules into recipe resources
+ # TODO(martiniss): Move skia modules into recipe resources
r'common\.skia\..*',
r'slave\.skia\..*',
]
@@ -16,7 +16,7 @@ RECIPES_PY = os.path.join(
os.path.dirname(os.path.dirname(os.path.realpath(__file__))),
'recipes.py')
-args = [sys.argv[0], 'lint']
+args = [sys.argv[0], '--deps-path', '.lint_recipe_deps', 'lint']
for pattern in MODULES_WHITELIST:
args.extend(['-w', pattern])
os.execvp(RECIPES_PY, args)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698