From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id MFdoLsoRb2AbEgAAWB0awg (envelope-from ) for ; Thu, 08 Apr 2021 10:23:06 -0400 Received: by simark.ca (Postfix, from userid 112) id 588D11EF66; Thu, 8 Apr 2021 10:23:04 -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,RCVD_IN_MSPIKE_H2,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 527C21E965 for ; Thu, 8 Apr 2021 10:23:02 -0400 (EDT) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id EAF683951894; Thu, 8 Apr 2021 14:23:01 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org EAF683951894 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1617891782; bh=VS6Zwee7AHlIUoTGLrXUinTSBoQVEHpT9LYKc4f2ubo=; h=To:Subject:Date:References:In-Reply-To:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To: From; b=nk/DKnen+/ptEgeckcra6lzfMqKQaLVhGyd4VQnKlP0QCt5aXkbhq6pJpUcJ2Bw1O H+NJKHUmkH2ip9YLHoZSgfTf5zsKMdEATBTV5kWbugGi+ff2jeac+p/PajGnuYFCOa vOSNoozIoEW7NioHqK73F5VxV6NPxITI5eNy/+50= Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by sourceware.org (Postfix) with ESMTPS id D6134394741E for ; Thu, 8 Apr 2021 14:22:58 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org D6134394741E IronPort-SDR: QdVKbtVigs9ViyG90e9sjsZfFyea9y1kvVBrEJS4TQgJrlD16xX+emj1T5sC4dGedLxLoKJTu1 6ICeX5U7l0QA== X-IronPort-AV: E=McAfee;i="6000,8403,9948"; a="278825443" X-IronPort-AV: E=Sophos;i="5.82,206,1613462400"; d="scan'208";a="278825443" Received: from orsmga004.jf.intel.com ([10.7.209.38]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 08 Apr 2021 07:22:55 -0700 IronPort-SDR: GnX4mZaSUEDzcb8S2GG+8K4CPTxWSrmVH4ajg4oIqAnDbEl18eMtI7pK0ukl7mti0+PXAYVPQ+ q10+l1dMtasQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.82,206,1613462400"; d="scan'208";a="530616044" Received: from irvmail001.ir.intel.com ([10.43.11.63]) by orsmga004.jf.intel.com with ESMTP; 08 Apr 2021 07:22:53 -0700 Received: from ulvlx001.iul.intel.com (ulvlx001.iul.intel.com [172.28.207.17]) by irvmail001.ir.intel.com (8.14.3/8.13.6/MailSET/Hub) with ESMTP id 138EMqXg008526; Thu, 8 Apr 2021 15:22:52 +0100 Received: from ulvlx001.iul.intel.com (localhost [127.0.0.1]) by ulvlx001.iul.intel.com with ESMTP id 138EMqwZ021471; Thu, 8 Apr 2021 16:22:52 +0200 Received: (from taktemur@localhost) by ulvlx001.iul.intel.com with LOCAL id 138EMp3p021467; Thu, 8 Apr 2021 16:22:51 +0200 To: gdb-patches@sourceware.org Subject: [PATCH v2 0/4] Multi-context invalid breakpoint conditions and MI Date: Thu, 8 Apr 2021 16:22:35 +0200 Message-Id: X-Mailer: git-send-email 1.7.0.7 References: In-Reply-To: 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: Tankut Baris Aktemur via Gdb-patches Reply-To: Tankut Baris Aktemur Errors-To: gdb-patches-bounces@sourceware.org Sender: "Gdb-patches" Hi, This is v2 of https://sourceware.org/pipermail/gdb-patches/2021-April/177532.html The changes with respect to v1 are: * Using a table in the documentation of the 'enabled' field in MI output. * Displaying "N" instead of "N*" in MI for locations that are disabled because of the breakpoint condition. * Using proc_with_prefix to eliminate duplicate test names in gdb.mi/mi-break.exp. * Using "--force-condition" instead of "-b" as a flag for the MI's -break-insert command. * Revising the tests to check for command completion ("^done") and using 'mi_make_breakpoint_multi' to check for the 'enabled="N"' field. Simon Marchi (1): testsuite, gdb.mi: fix duplicate test names in mi-break.exp Tankut Baris Aktemur (3): gdb/breakpoint: display "N" on MI for disabled-by-condition locations gdb/breakpoint: add a 'force_condition' parameter to 'create_breakpoint' gdb/mi: add a '--force-condition' flag to the '-break-insert' cmd gdb/NEWS | 8 +++++ gdb/breakpoint.c | 48 +++++++++++++++++++++----- gdb/breakpoint.h | 6 ++++ gdb/doc/gdb.texinfo | 29 ++++++++++++---- gdb/guile/scm-breakpoint.c | 2 +- gdb/mi/mi-cmd-break.c | 7 ++++ gdb/python/py-breakpoint.c | 2 +- gdb/python/py-finishbreakpoint.c | 2 +- gdb/testsuite/gdb.mi/mi-break.exp | 57 ++++++++++++++++++++++++++----- 9 files changed, 134 insertions(+), 27 deletions(-) -- 2.17.1