Browse Source

add failing test for BZ 43799

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@592498 13f79535-47bb-0310-9956-ffa450edef68
master
Matthew Jason Benson 17 years ago
parent
commit
e9d1a31709
1 changed files with 19 additions and 0 deletions
  1. +19
    -0
      src/tests/antunit/taskdefs/touch-test.xml

+ 19
- 0
src/tests/antunit/taskdefs/touch-test.xml View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<project name="touch-test" default="antunit" xmlns:au="antlib:org.apache.ant.antunit">
<import file="../antunit-base.xml"/>

<target name="test-no-child">
<au:expectfailure>
<touch />
</au:expectfailure>
</target>

<target name="test-no-match">
<touch>
<fileset file="${ant.file}">
<filename name="IDONOTMATCH" />
</fileset>
</touch>
</target>

</project>

Loading…
Cancel
Save