Skip to content

Commit 2a8f1f4

Browse files
committed
Fix unittest.exp failure due to 'set debuginfod' addition
The 'set debuginfod' change caused a regression in unittest.exp: Running selftest help_doc_invariants. help doc broken invariant: command 'info set debuginfod' help doc first line is not terminated with a '.' character help doc broken invariant: command 'set debuginfod' help doc first line is not terminated with a '.' character help doc broken invariant: command 'show debuginfod' help doc first line is not terminated with a '.' character Self test failed: self-test failed at ../../binutils-gdb/gdb/unittests/command-def-selftests.c:100 This patch fixes the problem. I'm checking it in.
1 parent c26c6bc commit 2a8f1f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gdb/debuginfod-support.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -406,8 +406,8 @@ _initialize_debuginfod ()
406406
{
407407
/* set/show debuginfod */
408408
add_setshow_prefix_cmd ("debuginfod", class_run,
409-
_("Set debuginfod options"),
410-
_("Show debuginfod options"),
409+
_("Set debuginfod options."),
410+
_("Show debuginfod options."),
411411
&set_debuginfod_prefix_list,
412412
&show_debuginfod_prefix_list,
413413
&setlist, &showlist);

0 commit comments

Comments
 (0)