From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from eggs.gnu.org (eggs.gnu.org [IPv6:2001:470:142:3::10]) by sourceware.org (Postfix) with ESMTPS id 294B43858D39 for ; Wed, 24 May 2023 16:53:02 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 294B43858D39 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=gnu.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gnu.org Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1q1rjR-0000Vx-6v; Wed, 24 May 2023 12:53:01 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=uDo3vHpbxEu6feiratd/XU87huyvkwscBI6CHOPXFV4=; b=TIbbtYxVCMLi Yu11Ga2Nl1uKkcFo5hWe+l+P+iZyQz7JtmYCjqRYTR03QhIdMsfF1j2YfsSBoraZ0JW4AHnGdOtPf ra5iX707lVoy7tZ/m1aD7ylzqKY7MnT1ABHtI1WEICTKtzK0YDG6UiR48g0hrW3ZM2vF3TlOhcY/W BsR+JOixaFz0e27Axi1M330RCIOtUcNGmowrVBrRDVE4Wp08kJLrIRufz70v6S89akrDUrWhnrzf8 3RwjSYTbk7j9MhiJneR9wbhbpilT+J4ZVy+YvV8BzlhXMA5M7dEZvoVc5Eao5ax9dCK1pMLExmXPT lJFQliKUWc9559VsJUjEag==; Received: from [87.69.77.57] (helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1q1rjQ-0006Hj-Mz; Wed, 24 May 2023 12:53:01 -0400 Date: Wed, 24 May 2023 19:53:29 +0300 Message-Id: <83353loely.fsf@gnu.org> From: Eli Zaretskii To: Tom Tromey Cc: gdb-patches@sourceware.org In-Reply-To: <20230427-ada-catch-exception-v1-10-947caa9905e3@adacore.com> (message from Tom Tromey via Gdb-patches on Wed, 24 May 2023 10:37:01 -0600) Subject: Re: [PATCH 10/25] Implement DAP attach request References: <20230427-ada-catch-exception-v1-0-947caa9905e3@adacore.com> <20230427-ada-catch-exception-v1-10-947caa9905e3@adacore.com> X-Spam-Status: No, score=1.7 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,RCVD_IN_BARRACUDACENTRAL,SPF_HELO_PASS,SPF_PASS,TXREP,T_SCC_BODY_TEXT_LINE autolearn=no autolearn_force=no version=3.4.6 X-Spam-Level: * X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: > Date: Wed, 24 May 2023 10:37:01 -0600 > From: Tom Tromey via Gdb-patches > > This implements the DAP "attach" request. > > Note that the copyright dates on the new test source file are not > incorrect -- this was copied verbatim from another directory. > --- > gdb/doc/gdb.texinfo | 8 ++++++++ > gdb/python/lib/gdb/dap/launch.py | 13 ++++++++++++- > gdb/testsuite/gdb.dap/attach.c | 25 +++++++++++++++++++++++++ > gdb/testsuite/gdb.dap/attach.exp | 36 ++++++++++++++++++++++++++++++++++++ > gdb/testsuite/lib/dap-support.exp | 19 ++++++++++++++++--- > 5 files changed, 97 insertions(+), 4 deletions(-) OK for the documentation part. Thanks. Reviewed-By: Eli Zaretskii