LUCENE-4420: add solr changes.html testing to smoketester

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1389202 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Muir 2012-09-24 04:40:14 +00:00
parent 798fd49a76
commit 11d421a36d
2 changed files with 6 additions and 4 deletions

View File

@ -275,6 +275,9 @@
<fileset dir="solr/package"/> <fileset dir="solr/package"/>
</copy> </copy>
<copy file="${fakeRelease}/lucene/KEYS" todir="${fakeRelease}/solr"/> <copy file="${fakeRelease}/lucene/KEYS" todir="${fakeRelease}/solr"/>
<copy todir="${fakeRelease}/solr/changes">
<fileset dir="solr/build/docs/changes"/>
</copy>
<makeurl file="${fakeRelease}" validate="false" property="fakeRelease.uri"/> <makeurl file="${fakeRelease}" validate="false" property="fakeRelease.uri"/>
<exec executable="${python32.exe}" failonerror="true"> <exec executable="${python32.exe}" failonerror="true">
<arg value="-u"/> <arg value="-u"/>

View File

@ -226,10 +226,9 @@ def checkSigs(project, urlString, version, tmpDir, isSigned):
if mavenURL is None: if mavenURL is None:
raise RuntimeError('%s is missing maven' % project) raise RuntimeError('%s is missing maven' % project)
if project == 'lucene': if changesURL is None:
if changesURL is None: raise RuntimeError('%s is missing changes-%s' % (project, version))
raise RuntimeError('%s is missing changes-%s' % (project, version)) testChanges(project, version, changesURL)
testChanges(project, version, changesURL)
for artifact, urlString in artifacts: for artifact, urlString in artifacts:
print(' download %s...' % artifact) print(' download %s...' % artifact)