Skip to content

Commit

Permalink
[infra] Temporarily disable exception for invalid core pattern
Browse files Browse the repository at this point in the history
Bug: #39662
Change-Id: I68654fcbc819e0f63f57b4f68c8934969aca6858
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/127163
Reviewed-by: Jonas Termansen <sortie@google.com>
  • Loading branch information
karlklose committed Dec 5, 2019
1 parent 47383da commit 1a41670
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions tools/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -743,8 +743,11 @@ def CheckLinuxCoreDumpPattern(fatal=False):
message = (
'Invalid core_pattern configuration. '
'The configuration of core dump handling is *not* correct for '
'a buildbot. The content of {0} must be "{1}" instead of "{2}".'.
format(core_pattern_file, expected_core_pattern, core_pattern))
'a buildbot. The content of {0} must be "{1}" instead of "{2}".'
'(see https://github.com/dart-lang/sdk/issues/39662)'.format(
core_pattern_file, expected_core_pattern, core_pattern))
# TODO(39662): Remove this once we know why this happens
fatal = False
if fatal:
raise Exception(message)
else:
Expand Down

0 comments on commit 1a41670

Please sign in to comment.