add -Dtests.nightly=true to failure repro line

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1132391 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael McCandless 2011-06-05 12:50:15 +00:00
parent c670b76a32
commit dfc834423e
1 changed files with 1 additions and 0 deletions

View File

@ -1241,6 +1241,7 @@ public abstract class LuceneTestCase extends Assert {
if (!TEST_TIMEZONE.equals("random")) sb.append(" -Dtests.timezone=").append(TEST_TIMEZONE);
if (!TEST_DIRECTORY.equals("random")) sb.append(" -Dtests.directory=").append(TEST_DIRECTORY);
if (RANDOM_MULTIPLIER > 1) sb.append(" -Dtests.multiplier=").append(RANDOM_MULTIPLIER);
if (TEST_NIGHTLY) sb.append(" -Dtests.nightly=true");
return sb.toString();
}