+
+ * breakpoint.c (print_one_breakpoint_location): Reduce whitespace,
+ and remove insertion of extra spaces in GDB's output.
+ * cli-out.c (cli_ui_out::do_field_fmt): Update header comment.
+ Layout field into a temporary buffer, and then output it as a
+ string field.
+
* NEWS: Document the language choice done by
else
uiout->field_string ("disp", bpdisp_text (b->disposition));
-
/* 4 */
annotate_field (3);
if (part_of_multiple)
uiout->field_string ("enabled", loc->enabled ? "y" : "n");
else
uiout->field_fmt ("enabled", "%c", bpenables[(int) b->enable_state]);
- uiout->spaces (2);
-
/* 5 and 6 */
if (b->ops != NULL && b->ops->print_one != NULL)
{
field_separator ();
}
-/* This is the only field function that does not align. */
+/* Output field containing ARGS using printf formatting in FORMAT. */
void
cli_ui_out::do_field_fmt (int fldno, int width, ui_align align,
if (m_suppress_output)
return;
- vfprintf_filtered (m_streams.back (), format, args);
+ std::string str = string_vprintf (format, args);
- if (align != ui_noalign)
- field_separator ();
+ do_field_string (fldno, width, align, fldname, str.c_str ());
}
void
+
+ * gdb.opt/inline-break.exp: Add test that info breakpoint output
+ is correctly aligned.
+
* gdb.ada/info_auto_lang.exp: New testcase.
"breakpoint hit presents stop at inlined function"
}
+with_test_prefix "check alignment" {
+
+ clean_restart $binfile
+
+ if {![runto main]} {
+ untested "could not run to main"
+ continue
+ }
+
+ gdb_test "break func4b" \
+ "Breakpoint.*at.*func4b.*\\(2 locations\\)"
+
+ set expected_line_length -1
+ gdb_test_multiple "info break \$bpnum" "xxxx" {
+ -re "Num Type Disp Enb Address What\r\n" {
+ exp_continue
+ }
+ -re "($decimal \[^\r\n\]+)<MULTIPLE>\[^\r\n\]+\r\n" {
+ if {$expected_line_length != -1} {
+ fail "multiple header lines seen"
+ }
+ set expected_line_length [string length $expect_out(1,string)]
+ exp_continue
+ }
+ -re "($decimal\.($decimal) \[^\r\n\]+)$hex\[^\r\n\]+\r\n" {
+ set len [string length $expect_out(1,string)]
+ set loc $expect_out(2,string)
+ gdb_assert {$len == $expected_line_length} \
+ "check alignment of location line $loc"
+ exp_continue
+ }
+ -re "$gdb_prompt $" {
+ }
+ }
+}
+
unset -nocomplain results