From 1a41670ed06e4275ea43e494f8c91ec5970f9de2 Mon Sep 17 00:00:00 2001 From: Karl Klose Date: Thu, 5 Dec 2019 09:46:09 +0000 Subject: [PATCH] [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 --- tools/utils.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tools/utils.py b/tools/utils.py index 1002e37ec83f..932be57911b2 100644 --- a/tools/utils.py +++ b/tools/utils.py @@ -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: