| Index: tools/presubmit.py
|
| diff --git a/tools/presubmit.py b/tools/presubmit.py
|
| index c8d3a714070707e032d9434e6fff554660b4d151..db19616f910c58f0d2ff0e4bcba23310d597bc44 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):
|
|
|