Skip to content

Commit 1a41670

Browse files
committed
[infra] Temporarily disable exception for invalid core pattern
Bug: #39662 Change-Id: I68654fcbc819e0f63f57b4f68c8934969aca6858 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/127163 Reviewed-by: Jonas Termansen <sortie@google.com>
1 parent 47383da commit 1a41670

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

tools/utils.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -743,8 +743,11 @@ def CheckLinuxCoreDumpPattern(fatal=False):
743743
message = (
744744
'Invalid core_pattern configuration. '
745745
'The configuration of core dump handling is *not* correct for '
746-
'a buildbot. The content of {0} must be "{1}" instead of "{2}".'.
747-
format(core_pattern_file, expected_core_pattern, core_pattern))
746+
'a buildbot. The content of {0} must be "{1}" instead of "{2}".'
747+
'(see https://github.com/dart-lang/sdk/issues/39662)'.format(
748+
core_pattern_file, expected_core_pattern, core_pattern))
749+
# TODO(39662): Remove this once we know why this happens
750+
fatal = False
748751
if fatal:
749752
raise Exception(message)
750753
else:

0 commit comments

Comments
 (0)