I executed my test by this:
<junit printsummary="yes" fork="no">
<classpath path="/soft/java/junit/junit.jar:${test.class.dir}"/>
<formatter type="xml" />
<test
name="MyTest">
</test>
</junit>The test MyTest produce a output to stdout and this output is in report: <system-out>my output</system-out> But if I run <junit> with fork="yes" the output is not in report. Vojta
