aboutsummaryrefslogtreecommitdiffstats
path: root/framework/src/ant/apache-ant-1.9.6/src/etc/testcases/taskdefs/optional/echoproperties.xml
diff options
context:
space:
mode:
Diffstat (limited to 'framework/src/ant/apache-ant-1.9.6/src/etc/testcases/taskdefs/optional/echoproperties.xml')
-rw-r--r--framework/src/ant/apache-ant-1.9.6/src/etc/testcases/taskdefs/optional/echoproperties.xml133
1 files changed, 0 insertions, 133 deletions
diff --git a/framework/src/ant/apache-ant-1.9.6/src/etc/testcases/taskdefs/optional/echoproperties.xml b/framework/src/ant/apache-ant-1.9.6/src/etc/testcases/taskdefs/optional/echoproperties.xml
deleted file mode 100644
index 7b1b8bb8..00000000
--- a/framework/src/ant/apache-ant-1.9.6/src/etc/testcases/taskdefs/optional/echoproperties.xml
+++ /dev/null
@@ -1,133 +0,0 @@
-<?xml version="1.0"?>
-<!--
- Licensed to the Apache Software Foundation (ASF) under one or more
- contributor license agreements. See the NOTICE file distributed with
- this work for additional information regarding copyright ownership.
- The ASF licenses this file to You under the Apache License, Version 2.0
- (the "License"); you may not use this file except in compliance with
- the License. You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
--->
-<project name="test" default="def" basedir=".">
-
- <target name="def">
- </target>
-
- <target name="setup">
- <property name="a.set" value="true" />
- <property name="b.set" value="false" />
- </target>
-
- <target name="testEchoToLog" depends="setup">
- <echoproperties />
- </target>
-
- <target name="testEchoWithEmptyPrefixToLog" depends="setup">
- <echoproperties prefix=""/>
- </target>
-
- <target name="testEchoToLogXml" depends="setup">
- <echoproperties format="xml" />
- </target>
-
- <target name="testReadAndEchoToLog" depends="setup">
- <echoproperties srcfile="echoproperties.properties" />
- </target>
-
- <target name="testReadBadFile" depends="setup">
- <echoproperties srcfile="." />
- </target>
-
- <target name="testReadBadFileFail" depends="setup">
- <echoproperties srcfile="." failonerror="yes" />
- </target>
-
- <target name="testReadBadFileNoFail" depends="setup">
- <echoproperties srcfile="." failonerror="no" />
- </target>
-
- <target name="testEchoToBadFile" depends="setup">
- <echoproperties destfile="." />
- </target>
-
- <target name="testEchoToBadFileFail" depends="setup">
- <echoproperties destfile="." failonerror="yes" />
- </target>
-
- <target name="testEchoToBadFileNoFail" depends="setup">
- <echoproperties destfile="." failonerror="no" />
- </target>
-
- <target name="testEchoToGoodFile" depends="setup">
- <echoproperties destfile="test.properties" />
- </target>
-
- <target name="testEchoToGoodFileXml" depends="setup">
- <echoproperties destfile="test.xml" format="xml" />
- </target>
-
- <target name="testEchoToGoodFileFail" depends="setup">
- <echoproperties destfile="test.properties" failonerror="yes" />
- </target>
-
- <target name="testEchoToGoodFileNoFail" depends="setup">
- <echoproperties destfile="test.properties" failonerror="no" />
- </target>
-
- <target name="testEchoPrefix" depends="setup">
- <echoproperties destfile="test-prefix.properties" prefix="a." />
- </target>
-
- <target name="testEchoPrefixAsPropertyset" depends="setup">
- <echoproperties destfile="test-prefix.properties">
- <propertyset>
- <propertyref prefix="a."/>
- </propertyset>
- </echoproperties>
- </target>
-
- <target name="testEchoPrefixAsNegatedPropertyset" depends="setup">
- <echoproperties destfile="test-prefix.properties">
- <propertyset negate="true">
- <propertyref prefix="b."/>
- </propertyset>
- </echoproperties>
- </target>
-
- <target name="testEchoPrefixAsDoublyNegatedPropertyset" depends="setup">
- <echoproperties destfile="test-prefix.properties">
- <propertyset negate="true">
- <propertyset negate="true">
- <propertyref prefix="a."/>
- </propertyset>
- </propertyset>
- </echoproperties>
- </target>
-
- <target name="testWithPrefixAndRegex" depends="setup">
- <echoproperties prefix="ant." regex=".*ant.*"/>
- </target>
-
- <target name="testWithEmptyPrefixAndRegex" depends="setup">
- <echoproperties prefix="" regex=""/>
- </target>
-
- <target name="testWithRegex" depends="setup">
- <echoproperties regex=".*ant.*"/>
- </target>
-
- <target name="cleanup">
- <delete file="test.properties" failonerror="no" />
- <delete file="test-prefix.properties" failonerror="no" />
- <delete file="test.xml" failonerror="no" />
- </target>
-
-</project>
-