Sometime we want to debug why ant build failed when executing a certain JUnit
Make sure your ant junit task look like the following
1 2 3 4 | <junit printsummary="withOutAndErr" haltonfailure="yes"> : : </junit> |
and not like
1 2 3 4 | <junit printsummary="yes" haltonfailure="yes"> : : </junit> |