mirror of https://github.com/apache/lucene.git
SOLR-1835: minor cleanups, remove redundant ant libs, add missing newlines to formatted errors
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@926608 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
569216606e
commit
b2337afd66
|
@ -559,7 +559,6 @@
|
|||
<exclude name="junit-*.jar" />
|
||||
<exclude name="*.txt" />
|
||||
<exclude name="*.template" />
|
||||
<exclude name="apache-ant-*.jar" />
|
||||
</lib>
|
||||
|
||||
<lib dir="lucene-libs"/>
|
||||
|
|
|
@ -1,2 +0,0 @@
|
|||
AnyObjectId[704717779f6d0d7eb026dc7af78a35e51adeec8b] was removed in git history.
|
||||
Apache SVN contains full history.
|
|
@ -1,2 +0,0 @@
|
|||
AnyObjectId[063cce4f940033fa6e33d3e590cf6f5051129295] was removed in git history.
|
||||
Apache SVN contains full history.
|
|
@ -218,9 +218,12 @@ public class SolrJUnitResultFormatter implements JUnitResultFormatter {
|
|||
}
|
||||
|
||||
sb.append(formatTest(test) + type);
|
||||
sb.append(StringUtils.LINE_SEP);
|
||||
sb.append(error.getMessage());
|
||||
sb.append(StringUtils.LINE_SEP);
|
||||
String strace = JUnitTestRunner.getFilteredTrace(error);
|
||||
sb.append(strace);
|
||||
sb.append(StringUtils.LINE_SEP);
|
||||
sb.append(StringUtils.LINE_SEP);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue