LUCENE-9660: correct help/tests.txt.

This commit is contained in:
Dawid Weiss 2021-10-26 08:45:58 +02:00
parent 2ed6e4aa78
commit 486141f0eb
1 changed files with 6 additions and 6 deletions

View File

@ -90,14 +90,14 @@ within the same JVM; it also works in IDEs):
gradlew -p lucene/core test --tests TestDemo -Ptests.iters=5
Tests tasks will be (by default) re-executed on each invocation because
we pick a random global tests.seed. If you run the same tests twice
with the same seed, the test task will be skipped (as it is up-to-date
with respect to source code):
we pick a random global tests.seed and because we want them to (force
the test task to run). If you want to make the 'tests' task obey up-to-date
gradle rules, fix the seed and turn off up to date trigger:
gradlew -p lucene/core test -Ptests.seed=deadbeef
gradlew -p lucene/core test -Ptests.seed=deadbeef -Ptests.neverUpToDate=false
to force re-execution of tests, even for the same master seed, apply
cleanTest task:
These properties can be set in your local gradle.properties. To force re-execution
of tests, even for the same master seed, apply cleanTest task:
gradlew -p lucene/core cleanTest test -Ptests.seed=deadbeef