LUCENE-3808: Segregate RandomizedTesting library sysprops from other Lucene/Solr tests.* sysprops, and use the empty string value to tell the test runner to use the default value for these sysprops.

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1326780 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Steven Rowe 2012-04-16 20:08:59 +00:00
parent 14f07def5d
commit 9432411da8
1 changed files with 21 additions and 10 deletions

View File

@ -47,16 +47,21 @@
<tika.version>1.1</tika.version>
<httpcomponents.version>4.1.3</httpcomponents.version>
<tests.asserts.gracious>false</tests.asserts.gracious>
<!-- RandomizedTesting library system properties -->
<tests.iters>1</tests.iters>
<tests.seed/>
<tests.nightly/>
<tests.weekly/>
<tests.awaitsfix/>
<tests.slow/>
<!-- Lucene/Solr-specific test system properties -->
<tests.codec>random</tests.codec>
<tests.directory>random</tests.directory>
<tests.iter>1</tests.iter>
<tests.iter.min>1</tests.iter.min>
<tests.locale>random</tests.locale>
<tests.luceneMatchVersion>4.0</tests.luceneMatchVersion>
<tests.multiplier>1</tests.multiplier>
<tests.postingsformat>random</tests.postingsformat>
<tests.seed>random</tests.seed>
<tests.timezone>random</tests.timezone>
<tests.verbose>false</tests.verbose>
<tests.infostream>${tests.verbose}</tests.infostream>
@ -472,22 +477,28 @@
<workingDirectory>${project.build.directory}/test</workingDirectory>
<argLine>-Xmx512M</argLine>
<systemPropertyVariables>
<tempDir>.</tempDir>
<!-- See <http://wiki.apache.org/lucene-java/RunningTests>
for a description of the tests.* system properties. -->
<tempDir>.</tempDir>
<!-- RandomizedTesting library system properties -->
<tests.iters>${tests.iters}</tests.iters>
<tests.seed>${tests.seed}</tests.seed>
<tests.nightly>${tests.nightly}</tests.nightly>
<tests.weekly>${tests.weekly}</tests.weekly>
<tests.awaitsfix>${tests.awaitsfix}</tests.awaitsfix>
<tests.slow>${tests.slow}</tests.slow>
<!-- Lucene/Solr-specific test system properties -->
<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.timezone>${tests.timezone}</tests.timezone>
<tests.verbose>${tests.verbose}</tests.verbose>
</systemPropertyVariables>