You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by mi...@apache.org on 2014/10/24 18:06:01 UTC

svn commit: r1634083 - /lucene/dev/branches/lucene_solr_4_10/dev-tools/scripts/smokeTestRelease.py

Author: mikemccand
Date: Fri Oct 24 16:06:00 2014
New Revision: 1634083

URL: http://svn.apache.org/r1634083
Log:
fix smoke tester to grok 410x version names

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

Modified: lucene/dev/branches/lucene_solr_4_10/dev-tools/scripts/smokeTestRelease.py
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene_solr_4_10/dev-tools/scripts/smokeTestRelease.py?rev=1634083&r1=1634082&r2=1634083&view=diff
==============================================================================
--- lucene/dev/branches/lucene_solr_4_10/dev-tools/scripts/smokeTestRelease.py (original)
+++ lucene/dev/branches/lucene_solr_4_10/dev-tools/scripts/smokeTestRelease.py Fri Oct 24 16:06:00 2014
@@ -1372,6 +1372,8 @@ def confirmAllReleasesAreTestedForBackCo
         tup = int(name[0]), int(name[1]), 0
       elif len(name) == 3:
         tup = int(name[0]), int(name[1]), int(name[2])
+      elif len(name) == 4 and name.startswith('410'):
+        tup = 4, 10, int(name[3:])
       else:
         raise RuntimeError('do not know how to parse index name %s' % name)
       testedIndices.add(tup)