Fix blind exceptions

pull/5311/head
Daniel Mensinger 6 years ago
parent ccc4ce28cc
commit bf98ffca9e
No known key found for this signature in database
GPG Key ID: 54DD94C131E277D4
  1. 2
      mesonbuild/ast/introspection.py
  2. 2
      mesonbuild/compilers/c.py
  3. 2
      mesonbuild/dependencies/base.py
  4. 2
      mesonbuild/minstall.py
  5. 2
      mesonbuild/scripts/depfixer.py
  6. 2
      mesonbuild/wrap/wrap.py
  7. 2
      run_project_tests.py
  8. 6
      run_unittests.py
  9. 2
      sideci.yml

@ -122,7 +122,7 @@ class IntrospectionInterpreter(AstInterpreter):
subi.analyze() subi.analyze()
subi.project_data['name'] = dirname subi.project_data['name'] = dirname
self.project_data['subprojects'] += [subi.project_data] self.project_data['subprojects'] += [subi.project_data]
except: except (mesonlib.MesonException, RuntimeError):
return return
def func_add_languages(self, node, args, kwargs): def func_add_languages(self, node, args, kwargs):

@ -1036,7 +1036,7 @@ class CCompiler(Compiler):
elf_class = 2 elf_class = 2
else: else:
elf_class = 1 elf_class = 1
except: except (MesonException, KeyError): # TODO evaluate if catching KeyError is wanted here
elf_class = 0 elf_class = 0
# Search in the specified dirs, and then in the system libraries # Search in the specified dirs, and then in the system libraries
for d in itertools.chain(extra_dirs, self.get_library_dirs(env, elf_class)): for d in itertools.chain(extra_dirs, self.get_library_dirs(env, elf_class)):

@ -1107,7 +1107,7 @@ class CMakeDependency(ExternalDependency):
for l in lexer1: for l in lexer1:
if l.func == 'set': if l.func == 'set':
self._cmake_set(l) self._cmake_set(l)
except: except MesonException:
return None return None
# Extract the variables and sanity check them # Extract the variables and sanity check them

@ -93,7 +93,7 @@ def set_chown(path, user=None, group=None, dir_fd=None, follow_symlinks=True):
dir_fd=dir_fd, dir_fd=dir_fd,
follow_symlinks=follow_symlinks) follow_symlinks=follow_symlinks)
shutil.chown(path, user, group) shutil.chown(path, user, group)
except: except Exception:
raise raise
finally: finally:
os.chown = real_os_chown os.chown = real_os_chown

@ -123,7 +123,7 @@ class Elf(DataSizes):
self.parse_header() self.parse_header()
self.parse_sections() self.parse_sections()
self.parse_dynamic() self.parse_dynamic()
except: except (struct.error, RuntimeError):
self.bf.close() self.bf.close()
raise raise

@ -84,7 +84,7 @@ class PackageDefinition:
try: try:
self.config = configparser.ConfigParser(interpolation=None) self.config = configparser.ConfigParser(interpolation=None)
self.config.read(fname) self.config.read(fname)
except: except configparser.Error:
raise WrapException('Failed to parse {}'.format(self.basename)) raise WrapException('Failed to parse {}'.format(self.basename))
if len(self.config.sections()) < 1: if len(self.config.sections()) < 1:
raise WrapException('Missing sections in {}'.format(self.basename)) raise WrapException('Missing sections in {}'.format(self.basename))

@ -774,7 +774,7 @@ def detect_system_compiler():
try: try:
comp = env.compiler_from_language(lang, env.is_cross_build()) comp = env.compiler_from_language(lang, env.is_cross_build())
details = '%s %s' % (' '.join(comp.get_exelist()), comp.get_version_string()) details = '%s %s' % (' '.join(comp.get_exelist()), comp.get_version_string())
except: except mesonlib.MesonException:
comp = None comp = None
details = 'not found' details = 'not found'
print('%-7s: %s' % (lang, details)) print('%-7s: %s' % (lang, details))

@ -1244,7 +1244,7 @@ class BasePlatformTests(unittest.TestCase):
print('Stderr:\n') print('Stderr:\n')
print(err) print(err)
raise RuntimeError('Configure failed') raise RuntimeError('Configure failed')
except: except Exception:
self._print_meson_log() self._print_meson_log()
raise raise
finally: finally:
@ -1257,7 +1257,7 @@ class BasePlatformTests(unittest.TestCase):
out = self._run(self.setup_command + args + extra_args) out = self._run(self.setup_command + args + extra_args)
except unittest.SkipTest: except unittest.SkipTest:
raise unittest.SkipTest('Project requested skipping: ' + srcdir) raise unittest.SkipTest('Project requested skipping: ' + srcdir)
except: except Exception:
self._print_meson_log() self._print_meson_log()
raise raise
return out return out
@ -4443,7 +4443,7 @@ class LinuxlikeTests(BasePlatformTests):
self.assertIn(cmd_std, cmd) self.assertIn(cmd_std, cmd)
try: try:
self.build() self.build()
except: except Exception:
print('{} was {!r}'.format(lang_std, v)) print('{} was {!r}'.format(lang_std, v))
raise raise
self.wipe() self.wipe()

@ -1,3 +1,5 @@
linter: linter:
flake8: flake8:
version: 3 version: 3
plugins:
- flake8-blind-except

Loading…
Cancel
Save