blob: cb7130a5313fa53d0455401ee3eb0bb705e2bf3d [file] [log] [blame]
<project name="test" default="def" basedir=".">
<target name="def">
<fail>This build file should only be run from within the testcase</fail>
</target>
<target name="setup">
<copy file="replaceregexp.properties" tofile="test.properties" />
</target>
<target name="setup-nl">
<copy file="replaceregexp2.properties" tofile="test.properties" />
</target>
<target name="testReplace" depends="setup">
<replaceregexp file="test.properties" byline="true">
<regexp pattern="Old(.*)=(.*)" />
<substitution expression="NewProp=\1\2" />
</replaceregexp>
</target>
<target name="testDontAddNewline1" depends="setup-nl">
<replaceregexp file="test.properties" byline="false">
<regexp pattern="Old(.*)=(.*)" />
<substitution expression="NewProp=\1\2" />
</replaceregexp>
</target>
<target name="testDontAddNewline2" depends="setup-nl">
<replaceregexp file="test.properties" byline="true">
<regexp pattern="Old(.*)=(.*)" />
<substitution expression="NewProp=\1\2" />
</replaceregexp>
</target>
<target name="cleanup">
<delete file="test.properties" />
</target>
</project>