| Index: tools/presubmit.py
|
| diff --git a/tools/presubmit.py b/tools/presubmit.py
|
| index cbc21f38945db7ca06336225b3b8958cff961c23..bb4293e53ef4e327f4e76bd8cd50ab5879a54ef5 100755
|
| --- a/tools/presubmit.py
|
| +++ b/tools/presubmit.py
|
| @@ -235,7 +235,9 @@ class CppLintProcessor(SourceFileProcessor):
|
| or (name in CppLintProcessor.IGNORE_LINT))
|
|
|
| def GetPathsToSearch(self):
|
| - return ['src', 'include', 'samples', join('test', 'cctest')]
|
| + return ['src', 'include', 'samples',
|
| + join('test', 'base-unittests'),
|
| + join('test', 'cctest')]
|
|
|
| def GetCpplintScript(self, prio_path):
|
| for path in [prio_path] + os.environ["PATH"].split(os.pathsep):
|
|
|