diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-01 08:11:51 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-01 08:11:51 +0000 |
commit | dd805fef306e6ee0d6bade640ea3689b10e64bc7 (patch) | |
tree | c07c3dc432292959a0e23ef76c83cd6203ff6c25 /PRESUBMIT.py | |
parent | d24156ccd8a316d2a22c506972aa8fa3bc68a256 (diff) | |
download | chromium_src-dd805fef306e6ee0d6bade640ea3689b10e64bc7.zip chromium_src-dd805fef306e6ee0d6bade640ea3689b10e64bc7.tar.gz chromium_src-dd805fef306e6ee0d6bade640ea3689b10e64bc7.tar.bz2 |
Disable CheckSvnModifiedDirectories for now. It doesn't work well in third_party.
BUG=none
TEST=none
TBR=maruel
Review URL: http://codereview.chromium.org/246055
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27710 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'PRESUBMIT.py')
-rwxr-xr-x | PRESUBMIT.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/PRESUBMIT.py b/PRESUBMIT.py index f42176d..2c911db 100755 --- a/PRESUBMIT.py +++ b/PRESUBMIT.py @@ -60,8 +60,9 @@ def CheckChangeOnCommit(input_api, output_api): input_api, output_api, sources)) results.extend(input_api.canned_checks.CheckSvnForCommonMimeTypes( input_api, output_api)) - results.extend(input_api.canned_checks.CheckSvnModifiedDirectories( - input_api, output_api, sources)) + # TODO(thestig) temporarily disabled, doesn't work in third_party/ + #results.extend(input_api.canned_checks.CheckSvnModifiedDirectories( + # input_api, output_api, sources)) # Make sure the tree is 'open'. # TODO(maruel): Run it in a separate thread to parallelize checks? results.extend(CheckTreeIsOpen( |