mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-26 01:07:52 +00:00
[gdb/selftest] Fix 'help_doc_invariants' self-test
Running selftest help_doc_invariants.
help doc broken invariant: command 'signal-event' help doc has over-long line
Self test failed: self-test failed at unittests/command-def-selftests.c:121
The reason is that doc string of 'signal-event' doesn't have
newlines at end of its line. Fix by adding newlines.
(cherry picked from commit c1023d9567)
This commit is contained in:
@@ -3114,9 +3114,9 @@ _initialize_windows_nat ()
|
|||||||
|
|
||||||
add_com ("signal-event", class_run, signal_event_command, _("\
|
add_com ("signal-event", class_run, signal_event_command, _("\
|
||||||
Signal a crashed process with event ID, to allow its debugging.\n\
|
Signal a crashed process with event ID, to allow its debugging.\n\
|
||||||
This command is needed in support of setting up GDB as JIT debugger on \
|
This command is needed in support of setting up GDB as JIT debugger on\n\
|
||||||
MS-Windows. The command should be invoked from the GDB command line using \
|
MS-Windows. The command should be invoked from the GDB command line using\n\
|
||||||
the '-ex' command-line option. The ID of the event that blocks the \
|
the '-ex' command-line option. The ID of the event that blocks the\n\
|
||||||
crashed process will be supplied by the Windows JIT debugging mechanism."));
|
crashed process will be supplied by the Windows JIT debugging mechanism."));
|
||||||
|
|
||||||
#ifdef __CYGWIN__
|
#ifdef __CYGWIN__
|
||||||
|
|||||||
Reference in New Issue
Block a user