I've done this in the past by making all of my tests create a resource if they fail, and after all the tests are completed, check if that resource exists. I am sure there are better ways to do this, though.
-----Original Message----- From: glenn opdycke-hansen [mailto:[EMAIL PROTECTED] Sent: Thursday, August 03, 2006 10:52 AM To: ant user Subject: error from multiple antcalls, how to fail after all antcalls run? I have a question about how to code a script to multiple tests are run and fail at the end of the script. I have a script that calls multiple targets via antcalls: <antcall target="check-resource-test"> <param name="url" value="${url.bigip}"/> </antcall> <antcall target="check-resource-test"> <param name="url" value="${url.5r}"/> </antcall> I want to execute all of the antcall targets. If any of the antcall targets get an error, then the script must fail. How can this be done? If each antcall target fails, then the script terminates. I was thinking of using a touch or concat to create a file that indicates an error occurred. The script can test if the file exists at the end and then fail if needed. Other suggestions? Thanks, Glenn --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]