Hi,
I am trying to check if a file called TestSummary.txt does NOT contains the
string "Number of failures = 0".
If it does not contain "Number of failures = 0" then I need to set a property
called test.status.failed.
When I try to test the ant script below I get:
<fileset> type doesn't support the nested "condition" element.
What am I doing wrong?
cheers,
//mikael
<?xml version="1.0" encoding="UTF-8"?>
<project name="changeme" default="all" basedir=".">
<target name="regression_status">
<property name="msg" value="Number of failures = 0"/>
<property name="reg.test.file" value="TestSummary.txt"/>
<echo message="Checking File ${reg.test.file}"/>
<echo message="For string ${msg}"/>
<!-- Set reg test failed -->
<fileset file="${res_file}" includes="*.txt">
<condition property="test.status.failed">
<not>
<contains text="${msg}" casesensitive="no"/>
</not>
</condition>
</fileset>
<fail if="test.status.failed" message="Regression tests failed!"/>
</target>
</project>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]