You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by rm...@apache.org on 2011/11/21 15:38:28 UTC

svn commit: r1204519 - /lucene/dev/branches/branch_3x/dev-tools/scripts/smokeTestRelease.py

Author: rmuir
Date: Mon Nov 21 14:38:28 2011
New Revision: 1204519

URL: http://svn.apache.org/viewvc?rev=1204519&view=rev
Log:
also check that loops are working in release candidates

Modified:
    lucene/dev/branches/branch_3x/dev-tools/scripts/smokeTestRelease.py

Modified: lucene/dev/branches/branch_3x/dev-tools/scripts/smokeTestRelease.py
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_3x/dev-tools/scripts/smokeTestRelease.py?rev=1204519&r1=1204518&r2=1204519&view=diff
==============================================================================
--- lucene/dev/branches/branch_3x/dev-tools/scripts/smokeTestRelease.py (original)
+++ lucene/dev/branches/branch_3x/dev-tools/scripts/smokeTestRelease.py Mon Nov 21 14:38:28 2011
@@ -31,6 +31,7 @@ import HTMLParser
 
 JAVA5_HOME = '/usr/local/src/jdk1.5.0_22'
 JAVA6_HOME = '/usr/local/src/jdk1.6.0_21'
+JAVA7_HOME = '/usr/local/src/jdk1.7.0_01'
 
 # TODO
 #   + verify KEYS contains key that signed the release
@@ -377,6 +378,8 @@ def verifyUnpacked(project, artifact, un
     else:
       print '    run tests w/ Java 6...'
       run('export JAVA_HOME=%s; ant test' % JAVA6_HOME, '%s/test.log' % unpackPath)
+      print '    run tests w/ Java 7...'
+      run('export JAVA_HOME=%s; ant test' % JAVA7_HOME, '%s/test.log' % unpackPath)
   else:
     if project == 'lucene':
       testDemo(isSrc, version)