summaryrefslogtreecommitdiffstats
path: root/test/resources/logic/for.xml
diff options
context:
space:
mode:
Diffstat (limited to 'test/resources/logic/for.xml')
-rw-r--r--test/resources/logic/for.xml24
1 files changed, 0 insertions, 24 deletions
diff --git a/test/resources/logic/for.xml b/test/resources/logic/for.xml
deleted file mode 100644
index d4a25da..0000000
--- a/test/resources/logic/for.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<project>
- <target name="init">
- <taskdef resource="net/sf/antcontrib/antlib.xml">
- <classpath location="${antcontrib.jar}"/>
- </taskdef>
- </target>
-
- <target name="loop" depends="init">
- <for param="i" end="10">
- <sequential>
- <echo>i is @{i}</echo>
- </sequential>
- </for>
- </target>
-
- <target name="step" depends="init">
- <for param="i" end="0" begin="10" step="-2">
- <sequential>
- <echo>i is @{i}</echo>
- </sequential>
- </for>
- </target>
-
-</project>