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:
Robert Muir 2010-03-23 15:06:54 +00:00
parent 569216606e
commit b2337afd66
4 changed files with 3 additions and 5 deletions

View File

@ -559,7 +559,6 @@
<exclude name="junit-*.jar" />
<exclude name="*.txt" />
<exclude name="*.template" />
<exclude name="apache-ant-*.jar" />
</lib>
<lib dir="lucene-libs"/>

View File

@ -1,2 +0,0 @@
AnyObjectId[704717779f6d0d7eb026dc7af78a35e51adeec8b] was removed in git history.
Apache SVN contains full history.

View File

@ -1,2 +0,0 @@
AnyObjectId[063cce4f940033fa6e33d3e590cf6f5051129295] was removed in git history.
Apache SVN contains full history.

View File

@ -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);
}
}