Browse Source

Make test pass on vmgump

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@693093 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 17 years ago
parent
commit
dfcdd8495f
1 changed files with 3 additions and 10 deletions
  1. +3
    -10
      src/tests/antunit/taskdefs/echo-test.xml

+ 3
- 10
src/tests/antunit/taskdefs/echo-test.xml View File

@@ -112,16 +112,9 @@
<target name="testUTF16Encoding">
<property name="char" value="&#169;" />
<echo file="${output}/echo16.txt" encoding="UTF-16">${char}</echo>
<au:assertTrue>
<resourcecount count="1">
<restrict>
<concat encoding="UTF-16">
<file file="${output}/echo16.txt" />
</concat>
<contains text="${char}" />
</restrict>
</resourcecount>
</au:assertTrue>
<loadfile property="out.16" srcfile="${output}/echo16.txt"
encoding="UTF-16"/>
<au:assertEquals expected="${char}" actual="${out.16}"/>
</target>

<target name="testUTF8Encoding">


Loading…
Cancel
Save