summaryrefslogtreecommitdiffstats
path: root/PRESUBMIT.py
diff options
context:
space:
mode:
authorpvalenzuela@chromium.org <pvalenzuela@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-01-29 18:08:32 +0000
committerpvalenzuela@chromium.org <pvalenzuela@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-01-29 18:08:32 +0000
commit6e04f8c4b8bb962e9a8582516517ae4d4c7466e6 (patch)
tree2ed5af03e8dbdb703fa520fcb888e650932ca05b /PRESUBMIT.py
parent5815cf5b5a303d87f0ef83f565f3b609afda4eb6 (diff)
downloadchromium_src-6e04f8c4b8bb962e9a8582516517ae4d4c7466e6.zip
chromium_src-6e04f8c4b8bb962e9a8582516517ae4d4c7466e6.tar.gz
chromium_src-6e04f8c4b8bb962e9a8582516517ae4d4c7466e6.tar.bz2
Recognize KIF tests in top-level PRESUBMIT.py
This change allows KIF (an iOS integration test framework) tests to be analyzed appropriately by presubmit checks such as _CheckNoProductionCodeUsingTestOnlyFunctions. BUG=NONE Review URL: https://codereview.chromium.org/133233009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@247718 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'PRESUBMIT.py')
-rw-r--r--PRESUBMIT.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/PRESUBMIT.py b/PRESUBMIT.py
index 4a7e384..d19fa7f 100644
--- a/PRESUBMIT.py
+++ b/PRESUBMIT.py
@@ -44,7 +44,7 @@ _IMPLEMENTATION_EXTENSIONS = r'\.(cc|cpp|cxx|mm)$'
_TEST_CODE_EXCLUDED_PATHS = (
r'.*[/\\](fake_|test_|mock_).+%s' % _IMPLEMENTATION_EXTENSIONS,
r'.+_test_(base|support|util)%s' % _IMPLEMENTATION_EXTENSIONS,
- r'.+_(api|browser|perf|pixel|unit|ui)?test(_[a-z]+)?%s' %
+ r'.+_(api|browser|kif|perf|pixel|unit|ui)?test(_[a-z]+)?%s' %
_IMPLEMENTATION_EXTENSIONS,
r'.+profile_sync_service_harness%s' % _IMPLEMENTATION_EXTENSIONS,
r'.*[/\\](test|tool(s)?)[/\\].*',