Hi, While poking around -break-insert this afternoon, I noticed that the "-r" option is completely unimplemented, but is mentioned (briefly) in the example for the command's documentation in the User Manual. This patch removes mention of the "-r" option (comments it out), removes mention of "rbreak" from the corresponding list of "GDB commands", and adds a PR number to the XFAILed tests in the test suite. [The sources do not otherwise even mention this "-r" option.] I'm including the doc inline and the testsuite patch as an attachment to avoid any line-wrap issues. Keith testsuite/ChangeLog 2012-06-20 Keith Seitz PR mi/14270 * gdb.mi/mi-break.exp (test_rbreak_creation_and_listing): Add bugzilla numbers to XFAILed tests. doc/ChangeLog 2012-06-20 Keith Seitz PR mi/14270 * gdb.texinfo (GDB/MI Breakpoint Commands): Remove "-r" option from example. Remove "rbreak" from list of corresponding gdb commands. Index: doc/gdb.texinfo =================================================================== RCS file: /cvs/src/src/gdb/doc/gdb.texinfo,v retrieving revision 1.977 diff -u -p -r1.977 gdb.texinfo --- doc/gdb.texinfo 20 Jun 2012 20:11:06 -0000 1.977 +++ doc/gdb.texinfo 20 Jun 2012 20:19:20 -0000 @@ -28088,7 +28088,7 @@ Note: this format is open to change. @subsubheading @value{GDBN} Command The corresponding @value{GDBN} commands are @samp{break}, @samp{tbreak}, -@samp{hbreak}, @samp{thbreak}, and @samp{rbreak}. +@samp{hbreak}, and @samp{thbreak}. @c and @samp{rbreak}. @subsubheading Example @@ -28117,11 +28117,11 @@ bkpt=@{number="2",type="breakpoint",disp addr="0x00010774",func="foo",file="recursive2.c", fullname="/home/foo/recursive2.c",line="11",times="0"@}]@} (gdb) --break-insert -r foo.* -~int foo(int, int); -^done,bkpt=@{number="3",addr="0x00010774",file="recursive2.c, -"fullname="/home/foo/recursive2.c",line="11",times="0"@} -(gdb) +@c -break-insert -r foo.* +@c ~int foo(int, int); +@c ^done,bkpt=@{number="3",addr="0x00010774",file="recursive2.c, +@c "fullname="/home/foo/recursive2.c",line="11",times="0"@} +@c (gdb) @end smallexample @subheading The @code{-break-list} Command