mirror of https://github.com/apache/lucene.git
add = signs
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1333865 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f7fef4dac7
commit
d920478751
|
@ -1560,7 +1560,7 @@ public abstract class LuceneTestCase extends Assert {
|
|||
// We get here from InterceptTestCaseEvents on the 'failed' event....
|
||||
public static void reportPartialFailureInfo() {
|
||||
System.err.println("NOTE: reproduce with (hopefully): ant test " +
|
||||
"-Dtestcase" + getTestClass().getSimpleName() +
|
||||
"-Dtestcase=" + getTestClass().getSimpleName() +
|
||||
" -Dtests.seed=" + RandomizedContext.current().getRunnerSeedAsString() +
|
||||
reproduceWithExtraParams());
|
||||
}
|
||||
|
@ -1569,7 +1569,7 @@ public abstract class LuceneTestCase extends Assert {
|
|||
public void reportAdditionalFailureInfo() {
|
||||
StringBuilder b = new StringBuilder();
|
||||
b.append("NOTE: reproduce with: ant test ")
|
||||
.append("-Dtestcase").append(getTestClass().getSimpleName());
|
||||
.append("-Dtestcase=").append(getTestClass().getSimpleName());
|
||||
if (getName() != null) {
|
||||
b.append(" -Dtests.method=").append(getName());
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue