From: Stefano Lattarini Date: Wed, 9 Jun 2010 00:57:24 +0000 (+0200) Subject: Parallel tests generation: improve comments (tiny change). X-Git-Tag: ng-0.5a~402^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=175d84c07fca40170ab83ecccbfa7d4b735f3ef9;p=thirdparty%2Fautomake.git Parallel tests generation: improve comments (tiny change). * tests/Makefile.am ($(parallel_tests)): Added useful comment to generated tests. Signed-off-by: Ralf Wildenhues --- diff --git a/ChangeLog b/ChangeLog index c07df8791..76fc1684c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2010-06-13 Stefano Lattarini + Parallel tests generation: improve comments (tiny change). + * tests/Makefile.am ($(parallel_tests)): Added useful comment to + generated tests. + Tests defs: truly get rid of `$am_defs_included' (unused variable) * tests/defs.in ($am_defs_included): Remove, its now unused. It should have been removed in a previous changeset, but the removal diff --git a/tests/Makefile.am b/tests/Makefile.am index 7eea8016b..e339e7e90 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -41,6 +41,8 @@ $(parallel_tests): Makefile.am echo; \ echo "# Run the test with Automake's parallel-tests driver enabled."; \ echo 'parallel_tests=yes'; \ + echo "# In the spirit of VPATH, we prefer a test in the build tree"; \ + echo "# over one in the source tree."; \ echo "if test -f \"./$$input\"; then"; \ echo " . \"./$$input\""; \ echo 'else'; \ diff --git a/tests/Makefile.in b/tests/Makefile.in index 203b62c02..3056cd375 100644 --- a/tests/Makefile.in +++ b/tests/Makefile.in @@ -1387,6 +1387,8 @@ $(parallel_tests): Makefile.am echo; \ echo "# Run the test with Automake's parallel-tests driver enabled."; \ echo 'parallel_tests=yes'; \ + echo "# In the spirit of VPATH, we prefer a test in the build tree"; \ + echo "# over one in the source tree."; \ echo "if test -f \"./$$input\"; then"; \ echo " . \"./$$input\""; \ echo 'else'; \