| Index: tools/utils.py
|
| diff --git a/tools/utils.py b/tools/utils.py
|
| index ac06c60d22589cf4c49bb9d3702e89eb22a916f6..88f17a0b89e31981d30d0070ed4335402da99c96 100644
|
| --- a/tools/utils.py
|
| +++ b/tools/utils.py
|
| @@ -726,16 +726,18 @@ class PosixCoreDumpEnabler(object):
|
| def __exit__(self, *_):
|
| resource.setrlimit(resource.RLIMIT_CORE, self._old_limits)
|
|
|
| +# TODO(whesse): Re-enable after issue #30205 is addressed
|
| class LinuxCoreDumpEnabler(PosixCoreDumpEnabler):
|
| def __enter__(self):
|
| + pass
|
| # Bump core limits to unlimited if core_pattern is correctly configured.
|
| - if CheckLinuxCoreDumpPattern(fatal=False):
|
| - super(LinuxCoreDumpEnabler, self).__enter__()
|
| + # if CheckLinuxCoreDumpPattern(fatal=False):
|
| + # super(LinuxCoreDumpEnabler, self).__enter__()
|
|
|
| def __exit__(self, *args):
|
| - # TODO(whesse): Re-enable after issue #30205 is addressed
|
| + pass
|
| # CheckLinuxCoreDumpPattern(fatal=True)
|
| - super(LinuxCoreDumpEnabler, self).__exit__(*args)
|
| + # super(LinuxCoreDumpEnabler, self).__exit__(*args)
|
|
|
| class WindowsCoreDumpEnabler(object):
|
| """Configure Windows Error Reporting to store crash dumps.
|
|
|