有一部分带有junit任务的ant脚本:
...
<target name="test">
<mkdir dir="path_to_report_dir">
<junit fork="true" printsummary="true" showoutput="true" maxmemory="1024M">
<classpath ... />
<batchtest todir="path_to_report_dir">
<formatter type="xml" />
<fileset ... />
</batchtest>
</junit>
</target>
...
该脚本适用于 Eclipse 和命令行。但它在 TeamCity 中不起作用。TeamCity 中的最后一条信息性消息是:[mkdir] Created dir: path_to_report_dir Process exit code: 0
看起来 junit 任务不起作用,并且它停止执行所有脚本。麻烦在哪里?