]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
test defs: new requirement for the default java interpreter
authorStefano Lattarini <stefano.lattarini@gmail.com>
Sat, 23 Apr 2011 18:00:11 +0000 (20:00 +0200)
committerStefano Lattarini <stefano.lattarini@gmail.com>
Tue, 26 Apr 2011 15:25:22 +0000 (17:25 +0200)
* tests/defs.in (for tool in $required): New requirement 'java'.

ChangeLog
tests/defs.in

index 50dfd165349dd9267132d34c6837df1ba16baad1..9e32286f44d41038558b00669d917a0cc59a44b6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2011-04-23  Stefano Lattarini  <stefano.lattarini@gmail.com>
+
+       test defs: new requirement for the default java interpreter
+       * tests/defs.in (for tool in $required): New requirement 'java'.
+
 2011-04-23  Stefano Lattarini  <stefano.lattarini@gmail.com>
 
        java tests: tweak and make stricter a couple of tests
index ef35d9fa5d2c4b9962d93f45b796d0f940290685..c8c0059f48748cbf43c01739e6a9a511220fb8c6 100644 (file)
@@ -195,6 +195,11 @@ do
       echo "$me: running javac -version -help"
       javac -version -help || exit 77
       ;;
+    java)
+      # See the comments above about `javac' for why we use also `-help'.
+      echo "$me: running java -version -help"
+      java -version -help || exit 77
+      ;;
     makedepend)
       echo "$me: running makedepend -f-"
       ( makedepend -f- ) || exit 77