Index: PRESUBMIT.py |
diff --git a/PRESUBMIT.py b/PRESUBMIT.py |
index 99c7c36b5e292d9586e07e31f78a560291740fbd..141b44e84f9623ee66c99115c776bce7ad956696 100644 |
--- a/PRESUBMIT.py |
+++ b/PRESUBMIT.py |
@@ -21,15 +21,26 @@ UNIT_TESTS = [ |
def CommonChecks(input_api, output_api): |
output = [] |
+ # Verify that LocalPath() is local. |
+ for i in input_api.AffectedFiles(): |
+ if (input_api.os_path.join(input_api.PresubmitLocalPath(), i.LocalPath()) != |
+ i.AbsoluteLocalPath()): |
+ output.append(output_api.PresubmitError('Path inconsistency')) |
nsylvain
2010/12/23 22:12:00
Do you have an example of failure here? When can t
M-A Ruel
2010/12/23 23:49:53
PresubmitLocalPath() = /home/foo/src
LocalPath() =
|
+ # Return right away because it needs to be fixed first. |
+ return output |
+ |
output.extend(input_api.canned_checks.RunPythonUnitTests( |
input_api, |
output_api, |
UNIT_TESTS)) |
output.extend(WasGitClUploadHookModified(input_api, output_api)) |
- white_list = [r'.*\.py$', r'.*git-try$'] |
+ white_list = [r'.*\.py$', r'^git-try$'] |
black_list = list(input_api.DEFAULT_BLACK_LIST) + [ |
- r'.*cpplint\.py$', r'.*git_cl_repo.*'] |
+ r'^cpplint\.py$', |
+ r'^git_cl[\/\\].*', |
+ r'^git_cl_repo[\/\\].*', |
+ r'^git_cl[\/\\]test[\/\\]rietveld.*'] |
output.extend(input_api.canned_checks.RunPylint( |
input_api, |
output_api, |