From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id 5d35B0uQbmFWcQAAWB0awg (envelope-from ) for ; Tue, 19 Oct 2021 05:30:51 -0400 Received: by simark.ca (Postfix, from userid 112) id 0F6D01F0BD; Tue, 19 Oct 2021 05:30:51 -0400 (EDT) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on simark.ca X-Spam-Level: X-Spam-Status: No, score=-1.1 required=5.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,MAILING_LIST_MULTI,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.2 Received: from sourceware.org (server2.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPS id 682781ECEB for ; Tue, 19 Oct 2021 05:30:50 -0400 (EDT) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id C8D833858024 for ; Tue, 19 Oct 2021 09:30:49 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org C8D833858024 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1634635849; bh=HksEz09BuzcNEc0d/graPzeCVs84E4ByQSaBfBZUIhU=; h=Date:To:Subject:In-Reply-To:References:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To: From; b=CkSX2eEugR2Zo0bkDmKl2jEtMn6pG0w6BKIfqpXzrkszVPgm/kiAj4OaXCYfhaN5Z JmaLQNfQGsFYEMzpH9cSOP/rjJlLnSKI7hkTZU55p/KDWUZjVmfrdFNvzQAktgS6tS i/MAEphOBoQ0QmJgmYapTprCAuUwtEQv88FS6SIY= Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by sourceware.org (Postfix) with ESMTPS id BA37A385781E for ; Tue, 19 Oct 2021 09:30:24 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org BA37A385781E Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-336-hWWVzqtfM2CbxG43_hssRQ-1; Tue, 19 Oct 2021 05:30:23 -0400 X-MC-Unique: hWWVzqtfM2CbxG43_hssRQ-1 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 2FA62801FCE for ; Tue, 19 Oct 2021 09:30:22 +0000 (UTC) Received: from f34-m1 (ovpn-112-45.phx2.redhat.com [10.3.112.45]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 1A5CD6A8E5 for ; Tue, 19 Oct 2021 09:30:22 +0000 (UTC) Date: Tue, 19 Oct 2021 02:30:21 -0700 To: gdb-patches@sourceware.org Subject: Re: [PATCH 0/2] Fix PR 28308 - dprintf breakpoints not working when run from script Message-ID: <20211019023021.7d9622cc@f34-m1> In-Reply-To: <20211002010054.1546736-1-kevinb@redhat.com> References: <20211002010054.1546736-1-kevinb@redhat.com> Organization: Red Hat MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Kevin Buettner via Gdb-patches Reply-To: Kevin Buettner Errors-To: gdb-patches-bounces+public-inbox=simark.ca@sourceware.org Sender: "Gdb-patches" Ping. On Fri, 1 Oct 2021 18:00:52 -0700 Kevin Buettner wrote: > This series consists of two patches, a relatively short fix (with > a long explanation) and a test case. > > Kevin Buettner (2): > Fix PR 28308 - dprintf breakpoints not working when run from script > Test case for Bug 28308 > > gdb/breakpoint.c | 13 +-- > .../gdb.base/dprintf-execution-x-script.c | 53 ++++++++++ > .../gdb.base/dprintf-execution-x-script.exp | 97 +++++++++++++++++++ > .../gdb.base/dprintf-execution-x-script.gdb | 21 ++++ > 4 files changed, 175 insertions(+), 9 deletions(-) > create mode 100644 gdb/testsuite/gdb.base/dprintf-execution-x-script.c > create mode 100644 gdb/testsuite/gdb.base/dprintf-execution-x-script.exp > create mode 100644 gdb/testsuite/gdb.base/dprintf-execution-x-script.gdb > > -- > 2.31.1 >