[Webtest] Handling Canoo Exception in Ant
Richard Hill
webtest@lists.canoo.com
Thu, 6 Mar 2003 15:46:44 -0800
I'm calling a series of ant files that run Canoo tests (see target "test"
below). If the first test (test1.xml) throws an exception the parent ant
file stops, which prevent the second test from running.
What I would like to do is have the parent ant script continue on by calling
test2.xml when an exception occurs in the first test. Or even better yet, if
the first test throws an exception, run a cleanup task before moving on to
the next test.
How would I do this in the parent ant script?
<project name="Parent Ant Script" default="usage" basedir=".">
.
.
.
<!-- Run these Canoo tests -->
<target name="test">
<ant antfile="test1.xml"/>
<ant antfile="test2.xml"/>
.
.
.
</target>
.
.
.
</project>
Thanks,
- Richard