[gdb/testsuite] Fix layout next/prev/regs help message
authorTom de Vries <tdevries@suse.de>
Mon, 24 Feb 2020 11:30:48 +0000 (12:30 +0100)
committerTom de Vries <tdevries@suse.de>
Mon, 24 Feb 2020 11:30:48 +0000 (12:30 +0100)
With test-case gdb.gdb/unittest.exp, I run into:
...
(gdb) maintenance selftest^M
   ...
Running selftest help_doc_invariants.^M
help doc broken invariant: command 'layout next' help doc first line is \
  not terminated with a '.' character^M
help doc broken invariant: command 'layout prev' help doc first line is \
  not terminated with a '.' character^M
help doc broken invariant: command 'layout regs' help doc first line is \
  not terminated with a '.' character^M
Self test failed: self-test failed at help-doc-selftests.c:95^M
...

Fix this by adding the missing '.' character.

Build and reg-tested on x86_64-linux.

gdb/ChangeLog:

2020-02-24  Tom de Vries  <tdevries@suse.de>

* tui/tui-layout.c (_initialize_tui_layout): Fix help messages for
commands layout next/prev/regs.

gdb/ChangeLog
gdb/tui/tui-layout.c

index 0a070dc9bbab99a51f108ade83307a206aa667b0..90c895a3bd0dbe4c20272bf7ce2b2d8e51f3819a 100644 (file)
@@ -1,3 +1,8 @@
+2020-02-24  Tom de Vries  <tdevries@suse.de>
+
+       * tui/tui-layout.c (_initialize_tui_layout): Fix help messages for
+       commands layout next/prev/regs.
+
 2020-02-22  Tom Tromey  <tom@tromey.com>
 
        * dwarf2/loc.h (dwarf2_compile_expr_to_ax): Don't declare.
index b2c47c018c105eee28487d176fdf351397826a5b..9014889a7650f47b9c93f49683107188a7956697 100644 (file)
@@ -1044,13 +1044,13 @@ Usage: layout prev | next | LAYOUT-NAME"),
                  &layout_list, "layout ", 0, &cmdlist);
 
   add_cmd ("next", class_tui, tui_next_layout_command,
-          _("Apply the next TUI layout"),
+          _("Apply the next TUI layout."),
           &layout_list);
   add_cmd ("prev", class_tui, tui_prev_layout_command,
-          _("Apply the previous TUI layout"),
+          _("Apply the previous TUI layout."),
           &layout_list);
   add_cmd ("regs", class_tui, tui_regs_layout_command,
-          _("Apply the TUI register layout"),
+          _("Apply the TUI register layout."),
           &layout_list);
 
   add_cmd ("new-layout", class_tui, tui_new_layout_command,