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 2014/03/06 20:54:08 UTC

svn commit: r1575025 - in /lucene/dev/branches/branch_4x: ./ dev-tools/ dev-tools/scripts/smokeTestRelease.py

Author: rmuir
Date: Thu Mar  6 19:54:07 2014
New Revision: 1575025

URL: http://svn.apache.org/r1575025
Log:
disable slow solr tests in smoketester

Modified:
    lucene/dev/branches/branch_4x/   (props changed)
    lucene/dev/branches/branch_4x/dev-tools/   (props changed)
    lucene/dev/branches/branch_4x/dev-tools/scripts/smokeTestRelease.py

Modified: lucene/dev/branches/branch_4x/dev-tools/scripts/smokeTestRelease.py
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_4x/dev-tools/scripts/smokeTestRelease.py?rev=1575025&r1=1575024&r2=1575025&view=diff
==============================================================================
--- lucene/dev/branches/branch_4x/dev-tools/scripts/smokeTestRelease.py (original)
+++ lucene/dev/branches/branch_4x/dev-tools/scripts/smokeTestRelease.py Thu Mar  6 19:54:07 2014
@@ -748,7 +748,7 @@ def verifyUnpacked(project, artifact, un
       os.chdir('solr')
 
       print("    run tests w/ Java 6 and testArgs='%s'..." % testArgs)
-      run('%s; ant test %s' % (javaExe('1.6'), testArgs), '%s/test.log' % unpackPath)
+      run('%s; ant test -Dtests.slow=false %s' % (javaExe('1.6'), testArgs), '%s/test.log' % unpackPath)
 
       # test javadocs
       print('    generate javadocs w/ Java 6...')
@@ -756,7 +756,7 @@ def verifyUnpacked(project, artifact, un
       checkJavadocpath('%s/solr/build/docs' % unpackPath, False)
 
       print("    run tests w/ Java 7 and testArgs='%s'..." % testArgs)
-      run('%s; ant clean test %s' % (javaExe('1.7'), testArgs), '%s/test.log' % unpackPath)
+      run('%s; ant clean test -Dtests.slow=false %s' % (javaExe('1.7'), testArgs), '%s/test.log' % unpackPath)
  
       # test javadocs
       print('    generate javadocs w/ Java 7...')