我发现
parallel线程计数设置为“ 1”的任务是可行的解决方法。这不是完美的,但是更改
build.xml很小:
build.xml :
... <target name="AllTests"> <parallel threadCount="1" timeout="900000"> <antcall target="TestA"/> <antcall target="TestB"/> <antcall target="TestC"/> </parallel></target><target name="TestA"> ... <exec executable="..." failonerror="false"/> ...</target><target name="TestB"> ... <exec executable="..." failonerror="false"/> ...</target><target name="TestC"> ... <exec executable="..." failonerror="false"/> ...</target>...



