From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id YN7XG6AfgGAKNwAAWB0awg (envelope-from ) for ; Wed, 21 Apr 2021 08:50:40 -0400 Received: by simark.ca (Postfix, from userid 112) id 701C21F104; Wed, 21 Apr 2021 08:50:40 -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 9FD6C1E54D for ; Wed, 21 Apr 2021 08:50:36 -0400 (EDT) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 0565A3892018; Wed, 21 Apr 2021 12:50:36 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 0565A3892018 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1619009436; bh=3sox0G/lg80tAfMyhQRWdi56wYaBrFViQR+9dM3wOTs=; h=Date:To:In-Reply-To:Subject:References:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: From; b=LAffde7yRgdUJjJwN+YIjJywKcJ6Pk/FW5zylxIL34rCGftcyof3nIVy5TCp5DBHP fuJDZkIoeUtVaikeXZzELKmuO3C9FXtSKMMxEMuuVdcl1lEKX08C/3uq1w67D4x5Xb EyIwvO3qKXzK4VAAiWxtikHZNEUKqF9di3uo7hXQ= Received: from eggs.gnu.org (eggs.gnu.org [IPv6:2001:470:142:3::10]) by sourceware.org (Postfix) with ESMTPS id 1E81B3892013 for ; Wed, 21 Apr 2021 12:50:30 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 1E81B3892013 Received: from fencepost.gnu.org ([2001:470:142:3::e]:55092) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1lZCJJ-0005je-MM; Wed, 21 Apr 2021 08:50:29 -0400 Received: from 84.94.185.95.cable.012.net.il ([84.94.185.95]:4195 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1lZCJA-0001YJ-Vz; Wed, 21 Apr 2021 08:50:23 -0400 Date: Wed, 21 Apr 2021 15:50:10 +0300 Message-Id: <834kfzred9.fsf@gnu.org> To: Tankut Baris Aktemur In-Reply-To: (message from Tankut Baris Aktemur via Gdb-patches on Wed, 21 Apr 2021 14:17:42 +0200) Subject: Re: [PATCH v3 4/4] gdb/mi: add a '--force-condition' flag to the '-break-insert' cmd References: 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: Eli Zaretskii via Gdb-patches Reply-To: Eli Zaretskii Cc: gdb-patches@sourceware.org Errors-To: gdb-patches-bounces@sourceware.org Sender: "Gdb-patches" > Date: Wed, 21 Apr 2021 14:17:42 +0200 > From: Tankut Baris Aktemur via Gdb-patches > > gdb/ChangeLog: > 2021-04-06 Tankut Baris Aktemur > > * mi/mi-cmd-break.c (mi_cmd_break_insert_1): Recognize the > '--force-condition' flag to force the condition in the > '-break-insert' and '-dprintf-insert' commands. > * breakpoint.c (condition_command): Consider having "--force" > as the argument and normalize to "-force". > * NEWS: Mention the change. > > gdb/testsuite/ChangeLog: > 2021-04-06 Tankut Baris Aktemur > > * gdb.mi/mi-break.exp (test_forced_conditions): New proc that > is called by the test. > > gdb/doc/ChangeLog: > 2021-04-06 Tankut Baris Aktemur > > * gdb.texinfo (GDB/MI Breakpoint Commands): Mention the > '--force-condition' flag of the '-break-insert' and > '-dprintf-insert' commands, and the '--force' flag of the > '-break-condition' command. Thanks, the documentation parts are OK.