From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 From: Tankut Baris Aktemur 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-Spam-Status: No, score=-9.8 required=5.0 tests=BAYES_00, KAM_DMARC_NONE, KAM_DMARC_STATUS, KAM_LAZY_DOMAIN_SECURITY, SPF_HELO_NONE, SPF_NONE, 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: 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: , X-List-Received-Date: Thu, 08 Apr 2021 14:23:00 -0000 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