diff options
author | siggi@chromium.org <siggi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-26 20:15:26 +0000 |
---|---|---|
committer | siggi@chromium.org <siggi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-26 20:15:26 +0000 |
commit | 76d20290e1a84f5a18c63c0f905062b986f01f55 (patch) | |
tree | 8de9b0d15501bb022e1f651c6db2fb12e56b6c24 /ceee | |
parent | 86f7f3d5222a1dccff52874fde38e94c3f7220be (diff) | |
download | chromium_src-76d20290e1a84f5a18c63c0f905062b986f01f55.zip chromium_src-76d20290e1a84f5a18c63c0f905062b986f01f55.tar.gz chromium_src-76d20290e1a84f5a18c63c0f905062b986f01f55.tar.bz2 |
Fix smoke_test presubmit match expression to work non-cygwin.
BUG=none
TEST=Presubmit check works on non-cygwin gitups.
Review URL: http://codereview.chromium.org/5356007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@67469 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ceee')
-rw-r--r-- | ceee/ceee_presubmit.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ceee/ceee_presubmit.py b/ceee/ceee_presubmit.py index 184c11b..2bbdcbe 100644 --- a/ceee/ceee_presubmit.py +++ b/ceee/ceee_presubmit.py @@ -130,7 +130,7 @@ def CheckUnittestsRan(input_api, output_api, committing): # But only if there were IE files modified, since we only have unit tests # for CEEE IE. files = [] - ie_paths_re = re.compile('ceee[\\/](ie|common)[\\/]') + ie_paths_re = re.compile('ceee[\\\\/](ie|common)[\\\\/]') for f in input_api.AffectedFiles(include_deletes = False): path = f.LocalPath() if (ie_paths_re.match(path)): |