smokeTester: don't look for Contrib-Changes.html

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1347969 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Muir 2012-06-08 09:24:17 +00:00
parent 2f7cf004fc
commit 5a837d9910
1 changed files with 0 additions and 5 deletions

View File

@ -286,17 +286,12 @@ def checkSigs(project, urlString, version, tmpDir, isSigned):
def testChanges(project, version, changesURLString):
print ' check changes HTML...'
changesURL = None
contribChangesURL = None
for text, subURL in getDirEntries(changesURLString):
if text == 'Changes.html':
changesURL = subURL
elif text == 'Contrib-Changes.html':
contribChangesURL = subURL
if changesURL is None:
raise RuntimeError('did not see Changes.html link from %s' % changesURLString)
if contribChangesURL is None:
raise RuntimeError('did not see Contrib-Changes.html link from %s' % changesURLString)
s = load(changesURL)
checkChangesContent(s, version, changesURL, project, True)