Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(617)

Unified Diff: presubmit_support.py

Issue 2250353003: Do not assume that all presubmit directories still exist. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: wrap the whole loop in a try block instead. Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: presubmit_support.py
diff --git a/presubmit_support.py b/presubmit_support.py
index 2922b4e32938c873da53decfc4e646e9b8d73174..84a1f9bcff27a9d07cfc4006688dae4e4c050b90 100755
--- a/presubmit_support.py
+++ b/presubmit_support.py
@@ -1093,11 +1093,14 @@ def ListRelevantPresubmitFiles(files, root):
# Look for PRESUBMIT.py in all candidate directories.
results = []
for directory in sorted(list(candidates)):
- for f in os.listdir(directory):
- p = os.path.join(directory, f)
- if os.path.isfile(p) and re.match(
- r'PRESUBMIT.*\.py$', f) and not f.startswith('PRESUBMIT_test'):
- results.append(p)
+ try:
+ for f in os.listdir(directory):
tandrii(chromium) 2016/08/17 10:01:56 the only thing that can raise here is this line, s
+ p = os.path.join(directory, f)
+ if os.path.isfile(p) and re.match(
+ r'PRESUBMIT.*\.py$', f) and not f.startswith('PRESUBMIT_test'):
+ results.append(p)
+ except OSError:
+ pass
logging.debug('Presubmit files: %s', ','.join(results))
return results
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698