Browse Source

get 100% passing tests under Windows jdk 1.5 - the JRE 1.5 is not able to open a jar URL when the jar is in a path containing an exclamation mark in the middle

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@1043813 13f79535-47bb-0310-9956-ffa450edef68
master
Antoine Levy-Lambert 14 years ago
parent
commit
1ffcacd800
3 changed files with 2 additions and 2 deletions
  1. +1
    -0
      src/tests/antunit/antunit-base.xml
  2. +0
    -1
      src/tests/antunit/taskdefs/secure-input.xml
  3. +1
    -1
      src/tests/antunit/taskdefs/taskdef-test.xml

+ 1
- 0
src/tests/antunit/antunit-base.xml View File

@@ -19,6 +19,7 @@

<property name="input" location="${java.io.tmpdir}/testinput"/>
<property name="output" location="${java.io.tmpdir}/testoutput"/>
<available property="jdk1.6+" classname="java.util.ServiceLoader"/>

<target name="tearDown">
<delete dir="${input}"/>


+ 0
- 1
src/tests/antunit/taskdefs/secure-input.xml View File

@@ -20,7 +20,6 @@
<import file="../antunit-base.xml"/>
<target name="setUp">
<available property="jdk1.6+" classname="java.util.ServiceLoader"/>
</target>
<target name="test-secure-input" if="jdk1.6+">


+ 1
- 1
src/tests/antunit/taskdefs/taskdef-test.xml View File

@@ -43,7 +43,7 @@
<au:assertLogContains text="Hello"/>
</target>

<target name="testDirWithPling" depends="setUp"
<target name="testDirWithPling" depends="setUp" if="jdk1.6+"
description="https://issues.apache.org/bugzilla/show_bug.cgi?id=50007">
<property name="dir" location="${tmpdir}/pl!ng"/>
<mkdir dir="${dir}"/>


Loading…
Cancel
Save