also check that loops are working in release candidates

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1204520 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Muir 2011-11-21 14:39:23 +00:00
parent abca92123b
commit 4656dfdb1e
1 changed files with 3 additions and 0 deletions

View File

@ -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
@ -383,6 +384,8 @@ def verifyUnpacked(project, artifact, unpackPath, version):
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)