OLD | NEW |
---|---|
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
6 """Enables directory-specific presubmit checks to run at upload and/or commit. | 6 """Enables directory-specific presubmit checks to run at upload and/or commit. |
7 """ | 7 """ |
8 | 8 |
9 __version__ = '1.8.0' | 9 __version__ = '1.8.0' |
10 | 10 |
(...skipping 1075 matching lines...) Loading... | |
1086 break | 1086 break |
1087 parent_dir = os.path.dirname(directory) | 1087 parent_dir = os.path.dirname(directory) |
1088 if parent_dir == directory: | 1088 if parent_dir == directory: |
1089 # We hit the system root directory. | 1089 # We hit the system root directory. |
1090 break | 1090 break |
1091 directory = parent_dir | 1091 directory = parent_dir |
1092 | 1092 |
1093 # Look for PRESUBMIT.py in all candidate directories. | 1093 # Look for PRESUBMIT.py in all candidate directories. |
1094 results = [] | 1094 results = [] |
1095 for directory in sorted(list(candidates)): | 1095 for directory in sorted(list(candidates)): |
1096 for f in os.listdir(directory): | 1096 try: |
1097 p = os.path.join(directory, f) | 1097 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
| |
1098 if os.path.isfile(p) and re.match( | 1098 p = os.path.join(directory, f) |
1099 r'PRESUBMIT.*\.py$', f) and not f.startswith('PRESUBMIT_test'): | 1099 if os.path.isfile(p) and re.match( |
1100 results.append(p) | 1100 r'PRESUBMIT.*\.py$', f) and not f.startswith('PRESUBMIT_test'): |
1101 results.append(p) | |
1102 except OSError: | |
1103 pass | |
1101 | 1104 |
1102 logging.debug('Presubmit files: %s', ','.join(results)) | 1105 logging.debug('Presubmit files: %s', ','.join(results)) |
1103 return results | 1106 return results |
1104 | 1107 |
1105 | 1108 |
1106 class GetTrySlavesExecuter(object): | 1109 class GetTrySlavesExecuter(object): |
1107 @staticmethod | 1110 @staticmethod |
1108 def ExecPresubmitScript(script_text, presubmit_path, project, change): | 1111 def ExecPresubmitScript(script_text, presubmit_path, project, change): |
1109 """Executes GetPreferredTrySlaves() from a single presubmit script. | 1112 """Executes GetPreferredTrySlaves() from a single presubmit script. |
1110 | 1113 |
(...skipping 711 matching lines...) Loading... | |
1822 return 2 | 1825 return 2 |
1823 | 1826 |
1824 | 1827 |
1825 if __name__ == '__main__': | 1828 if __name__ == '__main__': |
1826 fix_encoding.fix_encoding() | 1829 fix_encoding.fix_encoding() |
1827 try: | 1830 try: |
1828 sys.exit(main()) | 1831 sys.exit(main()) |
1829 except KeyboardInterrupt: | 1832 except KeyboardInterrupt: |
1830 sys.stderr.write('interrupted\n') | 1833 sys.stderr.write('interrupted\n') |
1831 sys.exit(2) | 1834 sys.exit(2) |
OLD | NEW |