Re: [PATCH] Testsuite: defs.in: work around zsh incompatibility w.r.t handling `$0'

2009-12-25 Thread Stefano Lattarini
Ping? (In the meantime, I rebased the patch against the latest master branch). Regards, Stefano From: Stefano Lattarini Date: 2009-12-26 02:08:36 2009 +0100 Subject: [PATCH] Work around Zsh incompatibility w.r.t handling `$0' (testsuite related) * tests/README (Supported shells): When des

[PATCH 6/6] Refactoring in makefiles, to avoid code duplication.

2009-12-25 Thread Stefano Lattarini
The recent extension of the `maintainer-check' target (to include checks on the consistency of the list of test scripts) has introduced some code duplication. This patch takes care of removing the part of such duplication that wasn't removed by the previous patch. From 122d8df933eb23409e4a2f6e54a9

[PATCH 5/6] maint-check: refactoring to avoid code duplication

2009-12-25 Thread Stefano Lattarini
The recent extension of the `maintainer-check' target (to include checks on the consistency of the list of test scripts) has introduced some code duplication. This patch takes care of removing (part of) such duplication. From 2c2c697dda9d46d079adb1071e73ae300b1fd139 Mon Sep 17 00:00:00 2001 From:

[PATCH 4/6] Slighty improve tests acoutbs.test and acoutbs2.test.

2009-12-25 Thread Stefano Lattarini
In this patch, I extend the test acoutbs2.test, mostly to be sure that I correctly understood the semantic of its checks when I did the previous change. For consistency, I also extend in a similar fashion the test acoutbs.test, as it's very similar to acoutbs2.test (both in code and in the tes

[PATCH 3/6] Fix test acoutbs2.test.

2009-12-25 Thread Stefano Lattarini
This patch fixes some bugs in the test script acoutbs2.test (missing AM_INIT_AUTOMAKE and AC_INIT, missing call to $ACLOCAL), which prevented it from working. From 9566f9fba3b50d5fecf4142468d80379718bc368 Mon Sep 17 00:00:00 2001 From: Stefano Lattarini Date: Fri, 25 Dec 2009 23:19:53 +0100 Subj

[PATCH 2/6] Add forgotten test scripts to $(TESTS).

2009-12-25 Thread Stefano Lattarini
This patch adds the test scripts `acoutbs2.test', `badopt.test' and `extra2.test' to $(TESTS). These files should have been listed in $(TESTS) from their creation, but for whatever reason (oversight?) they weren't. Example: commit f854b32d5d9f5b654828f73c6b5a8195fb44ab47, done by Tom Tromey at De

[PATCH 1/6] Maint-check: check consistency of list of test scripts.

2009-12-25 Thread Stefano Lattarini
This patch add a new maintainer-specific check: `maintainer-check-list-of-tests'. This check verifies that the tests listed in $(TESTS) correspond to the test scripts on the filesystem, counting both the "committed" (e.g. `aclibobj.test') and "generated" (e.g. `check-p.test') test scripts. No

[PATCH 0/6] Testsuite: check the list of test scripts

2009-12-25 Thread Stefano Lattarini
Hello automakers. This patch series is an amendment of my previously posted series on the same issue -- see: http://lists.gnu.org/archive/html/automake-patches/2009-12/msg00026.html Since all the patches posted previously have been amended, I've decided to re-propose the series in this fresh th

Re: [PATCH 0/4] Testsuite: check the list of test scripts

2009-12-25 Thread Stefano Lattarini
At Friday 11 December 2009, Stefano Lattarini wrote: > Hello automakers. > > While exploring and editing the automake testsuite, I came across > three test scripts (acoutbs2.test, badopt.test, extra2.test) which > were not listed in the $(TESTS) variable, and thus were never run. > In my opinion