From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from rock.gnat.com (rock.gnat.com [IPv6:2620:20:4000:0:a9e:1ff:fe9b:1d1]) by sourceware.org (Postfix) with ESMTP id 7FE5E3941C1F for ; Thu, 8 Oct 2020 16:14:49 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 7FE5E3941C1F Received: from localhost (localhost.localdomain [127.0.0.1]) by filtered-rock.gnat.com (Postfix) with ESMTP id 4553E11796B; Thu, 8 Oct 2020 12:14:49 -0400 (EDT) X-Virus-Scanned: Debian amavisd-new at gnat.com Received: from rock.gnat.com ([127.0.0.1]) by localhost (rock.gnat.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id yPOZBlu2UPq2; Thu, 8 Oct 2020 12:14:49 -0400 (EDT) Received: from murgatroyd (174-16-122-38.hlrn.qwest.net [174.16.122.38]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by rock.gnat.com (Postfix) with ESMTPSA id 015F51176CB; Thu, 8 Oct 2020 12:14:48 -0400 (EDT) From: Tom Tromey To: overseers@sourceware.org Subject: buglet in commit -> bugzilla script X-Attribution: Tom Date: Thu, 08 Oct 2020 10:14:48 -0600 Message-ID: <87k0w0k83r.fsf@tromey.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Status: No, score=-4.8 required=5.0 tests=BAYES_00, JMQ_SPF_NEUTRAL, KAM_DMARC_STATUS, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=no autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: overseers@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Overseers mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Oct 2020 16:14:50 -0000 I found a buglet in the script that examines commit messages and then updates bugzilla. This gdb commit: commit d706b69e48268ccf3e95fd29b5374ac94c3a507b Author: Tom Tromey Date: Tue Sep 8 10:20:44 2020 -0600 mentions a PR: PR win32/25302 notes that gdb will crash when trying to "run" even a simple program on Windows. The essential bug here is that the BFD cache can easily be corrupted -- I have sent a separate patch for that. However it did not end up here: https://sourceware.org/bugzilla/show_bug.cgi?id=25302 I think the reason is that the PR-matching regexp doesn't include "0-9", so it doesn't realize that "win32" is a component name. Could someone please fix this? thanks, Tom