I need some indication if the tests fail, but i still want the other targets
to run.
When i say parallel i mean that a group of targets should run , not
depending on the other target's success.

My targets are in this pattern:
<target name="target_b" depends="target_a">
       ........
       do all kind of work
       ........
        <junit fork="yes" printsummary="yes" failureproperty="unittest.failed" >
        ....
               <test
name="com.projectTarget.runnable.testrun.endToEnd.componentATR" 
todir="${junit.output.dir}/${moduleName}"/>
        ....
             </junit>
      <fail if="unittest.failed" message="There was a Problem with endToEnd
Tests!"/> 
</target>

Thanks.
-- 
View this message in context: 
http://www.nabble.com/parallel-targets-tp20302370p20341403.html
Sent from the Ant - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to