From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23060 invoked by alias); 17 Dec 2011 03:05:54 -0000 Received: (qmail 23043 invoked by uid 22791); 17 Dec 2011 03:05:53 -0000 X-SWARE-Spam-Status: No, hits=-1.6 required=5.0 tests=AWL,BAYES_00,FROM_12LTRDOM X-Spam-Check-By: sourceware.org Received: from relay1.mentorg.com (HELO relay1.mentorg.com) (192.94.38.131) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sat, 17 Dec 2011 03:05:40 +0000 Received: from nat-ies.mentorg.com ([192.94.31.2] helo=EU1-MAIL.mgc.mentorg.com) by relay1.mentorg.com with esmtp id 1Rbkag-0007cm-U7 from pedro_alves@mentor.com for gdb-patches@sourceware.org; Fri, 16 Dec 2011 19:05:39 -0800 Received: from scottsdale.localnet ([172.16.63.104]) by EU1-MAIL.mgc.mentorg.com with Microsoft SMTPSVC(6.0.3790.1830); Sat, 17 Dec 2011 03:05:36 +0000 From: Pedro Alves To: gdb-patches@sourceware.org Subject: [RFC/WIP PATCH v2 13/12] Comment out new info breakpoints output, in order to not break the test suite Date: Sat, 17 Dec 2011 03:07:00 -0000 User-Agent: KMail/1.13.6 (Linux/2.6.38-13-generic; KDE/4.7.2; x86_64; ; ) References: <20111217025904.22456.50717.stgit@localhost6.localdomain6> In-Reply-To: <20111217025904.22456.50717.stgit@localhost6.localdomain6> MIME-Version: 1.0 Content-Type: Text/Plain; charset="utf-8" Content-Transfer-Encoding: 7bit Message-Id: <201112170305.30358.pedro@codesourcery.com> X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2011-12/txt/msg00558.txt.bz2 On Saturday 17 December 2011 02:59:04, Pedro Alves wrote: > a bunch of changes and fixing to v1 brought the series close to being regression free. You'll need this patch to run the testsuite though. As the new "info breakpoints" output breaks many tests. Note that this time, I haven't pushed this patch out to http://github.com/palves/gdb/tree/itsets-v2 . -- Pedro Alves Comment out new info breakpoints output, in order to not break the test suite --- gdb/breakpoint.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index 92929db..98d2279 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -4977,6 +4977,7 @@ print_one_breakpoint_location (struct breakpoint *b, ui_out_text (uiout, "\n"); } +#if 0 // disabled in order to be able to run the testsuite if (!part_of_multiple && b->trigger_set != NULL) { ui_out_text (uiout, "\tstop only in trigger-set: ["); @@ -4996,6 +4997,7 @@ print_one_breakpoint_location (struct breakpoint *b, ui_out_field_string (uiout, "stop-set", itset_spec (b->stop_set)); ui_out_text (uiout, "]\n"); } +#endif if (!part_of_multiple && b->hit_count) {