You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by sa...@apache.org on 2012/04/04 17:50:41 UTC

svn commit: r1309468 - /lucene/dev/trunk/dev-tools/maven/pom.xml.template

Author: sarowe
Date: Wed Apr  4 15:50:40 2012
New Revision: 1309468

URL: http://svn.apache.org/viewvc?rev=1309468&view=rev
Log:
Add support for passing through new tests.* system properties

Modified:
    lucene/dev/trunk/dev-tools/maven/pom.xml.template

Modified: lucene/dev/trunk/dev-tools/maven/pom.xml.template
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/dev-tools/maven/pom.xml.template?rev=1309468&r1=1309467&r2=1309468&view=diff
==============================================================================
--- lucene/dev/trunk/dev-tools/maven/pom.xml.template (original)
+++ lucene/dev/trunk/dev-tools/maven/pom.xml.template Wed Apr  4 15:50:40 2012
@@ -453,17 +453,25 @@
             <workingDirectory>${project.build.directory}/test</workingDirectory>
             <argLine>-Xmx512M</argLine>
             <systemPropertyVariables>
+              <!-- See <http://wiki.apache.org/lucene-java/RunningTests>
+                   for a description of the tests.* system properties. -->
               <tempDir>.</tempDir>
               <jetty.testMode>1</jetty.testMode>
+              <tests.asserts.gracious>${tests.asserts.gracious}</tests.asserts.gracious>
               <tests.codec>${tests.codec}</tests.codec>
               <tests.directory>${tests.directory}</tests.directory>
+              <tests.infostream>${tests.infostream}</tests.infostream>
               <tests.iter>${tests.iter}</tests.iter>
+              <tests.iter.min>${tests.iter.min}</tests.iter.min>
               <tests.locale>${tests.locale}</tests.locale>
               <tests.luceneMatchVersion>${tests.luceneMatchVersion}</tests.luceneMatchVersion>
               <tests.multiplier>${tests.multiplier}</tests.multiplier>
               <tests.nightly>${tests.nightly}</tests.nightly>
+              <tests.postingsformat>${tests.postingsformat}</tests.postingsformat>
               <tests.seed>${tests.seed}</tests.seed>
+              <tests.threadspercpu>${tests.threadspercpu}</tests.threadspercpu>
               <tests.timezone>${tests.timezone}</tests.timezone>
+              <tests.verbose>${tests.verbose}</tests.verbose>
             </systemPropertyVariables>
           </configuration>
         </plugin>
@@ -618,6 +626,8 @@
   </build>
   <profiles>
     <profile>
+      <!-- Although currently a no-op, this profile remains here to reserve
+           the ability to perform Maven build initialization tasks. -->
       <id>bootstrap</id>
       <build>
         <plugins>