Re: PATCH: clean up whitespace in manual

2018-12-10 Thread Ben Elliston
On Tue, Dec 11, 2018 at 12:00:05AM -0600, Jacob Bachmeyer wrote: > Also, after what threshold of adding/reorganizing/etc. the manual do > we have to change the cover page to list "Rob Savoye, et al" and > "Cygnus Support and the GNU Project"? I'm fine with doing that now, if everyone else is. Rob

Re: PATCH: clean up whitespace in manual

2018-12-10 Thread Jacob Bachmeyer
Ben Elliston wrote: On Mon, Dec 10, 2018 at 09:02:56PM -0600, Jacob Bachmeyer wrote: * doc/dejagnu.texi: Clean up whitespace. Some indented examples were changed to use the Texinfo "@ " command (yes, that really is a space character) to preserve correct indentation.

Re: PATCH: clean up whitespace in manual

2018-12-10 Thread Ben Elliston
On Mon, Dec 10, 2018 at 09:02:56PM -0600, Jacob Bachmeyer wrote: > * doc/dejagnu.texi: Clean up whitespace. Some indented examples > were changed to use the Texinfo "@ " command (yes, that really is > a space character) to preserve correct indentation. The "@ " > command

PATCH: clean up whitespace in manual

2018-12-10 Thread Jacob Bachmeyer
I finally got tired of Emacs complaining about irregular whitespace in dejagnu.texi (which is, of course, the reason that I left those warnings on) and cleaned up the various whitespace irregularities in the manual. This was more involved than a simple M-x whitespace-cleanup because several ex

Re: PATCH: document ignored directories in "getdirs"

2018-12-10 Thread Ben Elliston
On Mon, Dec 10, 2018 at 08:33:25PM -0600, Jacob Bachmeyer wrote: > This patch adds a small note to the manual listing the names of > directories that "getdirs" ignores. Applied, thanks! Ben signature.asc Description: PGP signature ___ DejaGnu mailing

PATCH: document ignored directories in "getdirs"

2018-12-10 Thread Jacob Bachmeyer
This patch adds a small note to the manual listing the names of directories that "getdirs" ignores. ChangeLog entry: * doc/dejagnu.texi (getdirs procedure): Document hard-coded directory exclusions by name in this procedure. patch: diff --git a/doc/dejagnu.texi b/d

PATCH: testsuite improvements

2018-12-10 Thread Jacob Bachmeyer
This patch fixes some issues with the testsuite. The "options" and "stats" modules now have dedicated inner testsuites; this avoids a large number of errors produced in the log due to the runtest instances spawned from "options.exp" attempting to actually run the main testsuite with a semi-bog

Re: PATCH: simplify regular expressions

2018-12-10 Thread Jacob Bachmeyer
Ben Elliston wrote: This patch is further to: http://lists.gnu.org/archive/html/dejagnu/2018-12/msg00042.html I would be grateful for a careful review from someone. Thanks, Ben 2018-12-10 Ben Elliston * config/gdb-comm.exp, config/gdb_stub.exp, config/vxworks.exp, lib/dg.ex

Re: PATCH: reduce syntactic sugar

2018-12-10 Thread Tom Tromey
> "Ben" == Ben Elliston writes: Ben> I started working through lib/target.exp to reduce unnecessary Ben> syntactic sugar around variable expansions. [...] Ben> Comments? It seems like an improvement to me. Tom ___ DejaGnu mailing list DejaGnu@gnu

Re: PATCH: Fix Info node link

2018-12-10 Thread Tom Tromey
> "Jacob" == Jacob Bachmeyer writes: Jacob> Another broken Info node link. Emacs can maintain these links (C-c Jacob> C-u Jacob> C-n on the "rsh procedure" node made this patch, or see the "Texinfo" Jacob> menu), or they can be omitted from the Texinfo source entirely if Jacob> certain cond

Re: PATCH: simplify regular expressions

2018-12-10 Thread Andreas Schwab
On Dez 10 2018, Ben Elliston wrote: > diff --git a/config/gdb-comm.exp b/config/gdb-comm.exp > index c9ef574..1e57eac 100644 > --- a/config/gdb-comm.exp > +++ b/config/gdb-comm.exp > @@ -86,7 +86,7 @@ proc gdb_comm_file_cmd { arg } { > verbose "\t\tKilling previous program being debugge

PATCH: simplify regular expressions

2018-12-10 Thread Ben Elliston
This patch is further to: http://lists.gnu.org/archive/html/dejagnu/2018-12/msg00042.html I would be grateful for a careful review from someone. Thanks, Ben 2018-12-10 Ben Elliston * config/gdb-comm.exp, config/gdb_stub.exp, config/vxworks.exp, lib/dg.exp, lib/framework.exp,

Re: PATCH: fix "missing tests" bug and other improvements to testsuite/runtest.all/libs.exp

2018-12-10 Thread Ben Elliston
On Sun, Dec 09, 2018 at 10:28:10PM -0600, Jacob Bachmeyer wrote: > This patch fixes a bug that could cause test results to be missed in > libs.exp and adds material to the manual explaining the issue. Thanks. Applied. > While adding an entire page worth of text to the manual may seem an > unusua