Browse Source

Ant-Build-Matrix failure (also local on XP): "Jar's directory not found: C:\Temp".

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@1297192 13f79535-47bb-0310-9956-ffa450edef68
master
Jesse N. Glick 13 years ago
parent
commit
78d4c36b52
1 changed files with 6 additions and 4 deletions
  1. +6
    -4
      src/etc/testcases/taskdefs/manifestclasspath.xml

+ 6
- 4
src/etc/testcases/taskdefs/manifestclasspath.xml View File

@@ -218,19 +218,21 @@
</target>

<target name="testSameDrive">
<manifestclasspath jarfile="C:/Temp/e.jar"
<property name="temp" location="${java.io.tmpdir}"/>
<manifestclasspath jarfile="${temp}\e.jar"
maxParentLevels="99" property="cp">
<classpath>
<pathelement location="C:/a/b/x.jar"/>
<pathelement location="${temp}\..\a\b\x.jar"/>
</classpath>
</manifestclasspath>
</target>

<target name="testDifferentDrive">
<manifestclasspath jarfile="C:/Temp/e.jar"
<property name="temp" location="${java.io.tmpdir}"/>
<manifestclasspath jarfile="${temp}\e.jar"
maxParentLevels="99" property="cp">
<classpath>
<pathelement location="D:/a/b/x.jar"/>
<pathelement location="D:\a\b\x.jar"/>
</classpath>
</manifestclasspath>
</target>


Loading…
Cancel
Save