This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[RFC/WIP PATCH v2 13/12] Comment out new info breakpoints output, in order to not break the test suite


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)
     {


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]