| 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)
|
|
|