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

Unified Diff: tools/utils.py

Issue 2983093002: Disable core dump archive check on Linux (Closed)
Patch Set: Created 3 years, 5 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: tools/utils.py
diff --git a/tools/utils.py b/tools/utils.py
index 62b07ca20564347d2429fa65ef2779d7b0e92b25..ac06c60d22589cf4c49bb9d3702e89eb22a916f6 100644
--- a/tools/utils.py
+++ b/tools/utils.py
@@ -733,7 +733,8 @@ class LinuxCoreDumpEnabler(PosixCoreDumpEnabler):
super(LinuxCoreDumpEnabler, self).__enter__()
def __exit__(self, *args):
- CheckLinuxCoreDumpPattern(fatal=True)
+ # TODO(whesse): Re-enable after issue #30205 is addressed
+ # CheckLinuxCoreDumpPattern(fatal=True)
super(LinuxCoreDumpEnabler, self).__exit__(*args)
class WindowsCoreDumpEnabler(object):
« 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