Merge branch 'maint' into java-work
authorStefano Lattarini <stefano.lattarini@gmail.com>
Sat, 23 Apr 2011 08:00:17 +0000 (10:00 +0200)
committerStefano Lattarini <stefano.lattarini@gmail.com>
Sat, 23 Apr 2011 08:00:17 +0000 (10:00 +0200)
1  2 
ChangeLog
tests/Makefile.am
tests/Makefile.in

diff --cc ChangeLog
+++ b/ChangeLog
+ 2011-04-22  Stefano Lattarini  <stefano.lattarini@gmail.com>
+       testsuite: more environment sanitization
+       * tests/defs.in: Sanity check: abort if any of `parallel_tests'
+       or `required' is in the environment.
+       ($sed_unindent_prog): Initialize to empty, to avoid interferences
+       from the environment.
+       * tests/self-check-me-in-env.test: Renamed to ...
+       * tests/self-check-env-sanitize.test: ... this, and extended.
+       * tests/Makefile.am (TESTS): Update.
+       (TESTS_ENVIRONMENT): Unset variables `parallel_tests' and
+       `required'.  Adjust comments.
+ 2011-04-18  Stefano Lattarini  <stefano.lattarini@gmail.com>
+       tests: don't allow `$me' to be overridden from the environment
+       * tests/defs.in: Sanity check: abort if $me is in the environment.
+       * tests/self-check-me-in-env.test: New test.
+       * tests/Makefile.am (TESTS_ENVIRONMENT): Unset variable `me'.
+       (TESTS): Update.
+       Suggestion by Ralf Wildenhues.
+ 2011-04-17  Stefano Lattarini  <stefano.lattarini@gmail.com>
+       test defs: allow overriding of `$me'
+       * tests/defs.in ($me): Allow overriding by the including test
+       script.  Add some explicative comments.
+ 2011-04-17  Stefano Lattarini  <stefano.lattarini@gmail.com>
+       depcomp tests: don't reject slower dependency extractors
+       * tests/depcomp8b.test: Add the `--enable-dependency-tracking'
+       option to `configure' invocations, so that slower dependency
+       extractors are not rejected.
+       * tests/depcomp8b.test: Likewise.  Also ...
+       (foo.c): ... since we are at it, fix spacing to be consistent
+       with GNU coding standards.
+ 2011-04-17  Stefano Lattarini  <stefano.lattarini@gmail.com>
+       m4: add missing serial numbers to a few files
+       Related to automake bug#8483.
+       * m4/amversion.in: Add serial number.
+       * m4/auxdir.m4: Likewise.
+       * m4/gcj.m4: Likewise.
+       * m4/install-sh.m4: Likewise.
+       * m4/mkdirp.m4: Likewise.
+       * m4/python.m4: Likewise.
+       * m4/runlog.m4: Likewise.
+       * m4/strip.m4: Likewise.
+       * m4/upc.m4: Likewise.
+ 2011-04-16  Jim Meyering  <meyering@redhat.com>
+       depcomp: correct invalid sed invocation
+       * lib/depcomp: Insert missing -e before '/:$/d'.
+       Otherwise, that use of sed would treat '/:$/d' as a file name.
+ 2011-04-14  Stefano Lattarini  <stefano.lattarini@gmail.com>
+       maintainer check: quote literal `$' in Makefile rule
+       * Makefile.am (sc_tests_PATH_SEPARATOR): Escape literal `$'
+       character in double-quoted string.  Fix a bug in which the rule
+       emitted an erroneously empty substring in its error message.
+ 2011-04-12  Stefano Lattarini  <stefano.lattarini@gmail.com>
+       coverage: test for automake bug#8485 (known regression)
+       * tests/yacc-dist-nobuild-subdir.test: New test.
+       * tests/Makefile.am (TESTS, XFAIL_TESTS): Update.
+ 2011-04-12  Stefano Lattarini  <stefano.lattarini@gmail.com>
+       test defs: define default $distdir (help reducing duplication)
+       * tests/defs.in ($distdir): New variable, might be used in
+       testcases checking distribution-related features.
+       * tests/pr9.test: Use it.
+       * tests/subdir9.test: Likewise.
+       * tests/vtexi3.test: Add comment explaining why we redefine
+       $distdir in this test.
+ 2011-04-11  Stefano Lattarini  <stefano.lattarini@gmail.com>
+       depcomp: fix bugs in tests and in the depcomp script
+       * lib/depcomp (gcc): Remove duplicated `-e' from sed invocation.
+       * tests/depcomp10.test: Make it executable.  Fix a blunder that
+       has left part of an intended comment not prefixed by `#', thus
+       causing shell syntax errors.  In this same comment, break a
+       too-long reported error message on multiple lines, for clarity.
+       Add reference to the relevant bug report.  Add a comment which
+       explains why the test result 'skipped' if the first "make" call
+       fails.  Add other useful comments.
+       * tests/depcomp9.test: Slightly improve comments.
+ 2011-04-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
+       Fix hp depmode for VPATH builds with GNU make.
+       * lib/depcomp: Be sure to remove VPATH-prefixed object from
+       dependency output when creating stub rule.
+       * tests/depcomp10.test: New test.
+       * tests/Makefile.am (TESTS): Update.
+       * NEWS: Update.
+       Report by Bruno Haible.
 +2011-04-18  Stefano Lattarini  <stefano.lattarini@gmail.com>
 +
 +      java: allow both dist_JAVA and nodist_JAVA in the same Makefile.am
 +      Fixes automake bug#8434.
 +      * automake.in (handle_java): Strip `dist_' and `nodist_' from
 +      the given prefix.  Define a new internal Makefile variable
 +      `am__java_sources'.  Related adjustments.
 +      * lib/am/java.am (JAVAC, JAVAROOT, CLASSPATH_ENV): Define only the
 +      first time this am file is processed.
 +      (class%DIR%.stamp): Stamp file renamed ...
 +      (class%NDIR%.stamp): ... to this, so that the `dist_' and `nodist_'
 +      prefixes are stripped from the name of the stampfile.  Adjust
 +      declaration of dependencies by using the new automake-generated
 +      internal variable `$(am__java_sources)'.  In the rule, use `$@'
 +      as the name of the target, rather than hard-coding it.
 +      * tests/java.test: Update and extend.
 +      * tests/java-no-duplicate.test: New test.
 +      * tests/java-mix-dist-nodist.test: Likewise.
 +      * tests/java-compile-and-install.test: Likewise.
 +      * tests/java-clean.test: Likewise.
 +      * tests/java-sources.test: Likewise.
 +      * tests/Makefile.am (TESTS): Update.
 +
 +2011-04-06  Stefano Lattarini  <stefano.lattarini@gmail.com>
 +
 +      coverage: more on java support EXTRA_ and noinst_ prefixes
 +      * tests/java-extra.test: New test, checking support for the
 +      prefix `EXTRA_' with the JAVA primary.
 +      * tests/java-noinst.test: New test, checking support for the
 +      prefix `noinst_' with the JAVA primary.
 +      * tests/Makefile.am (TESTS): Update.
 +
  2011-04-10  Stefano Lattarini  <stefano.lattarini@gmail.com>
  
        test defs: fix 'javac' requirement for older JDK versions
Simple merge
Simple merge