Ant build doesn't stop after all Junit tests were executed

248 views Asked by At

When I run my build.xml file with ant, somethimes ant is still running ,but all Junit tests were executed. It says that "test is executing",but junit already stoped.It could be something in background ?

How can I force ant to stop executing after all Junit tests ?

Thanks !

1

There are 1 answers

4
Kedarnath On

issue a kill -3 or "ctrl + \ " to the ant java process which will give you the stacktrace. That will tell you what is your ant actually doing.