blob: 4aca33eb10638a0c5769d0b3ed1b6d33441ff0e9 [file] [log] [blame]
<?xml version="1.0"?>
<project name="copyfile-test" basedir="." default="test1">
<target name="test1">
<copyfile/>
</target>
<target name="test2">
<copyfile src=""/>
</target>
<target name="test3">
<copyfile dest=""/>
</target>
<target name="test4">
<copyfile src="template.xml"
dest="template.xml"/>
</target>
<target name="test5">
<copyfile src="copyfile.xml"
dest="copyfile.tmp"/>
</target>
<target name="test6">
<copyfile src="copyfile.xml"
dest="testdir"/>
</target>
</project>