Browse Source

create test jar outside of ${output}

since we read resources from it, the JVM won't close it and subsequent tests
can not remove ${output} - making them fail on Windows.
master
Stefan Bodewig 10 years ago
parent
commit
8a8ebf595e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/tests/antunit/types/resources/test.xml

+ 1
- 1
src/tests/antunit/types/resources/test.xml View File

@@ -22,7 +22,7 @@
<property name="dirname" value="work" /> <property name="dirname" value="work" />
<property name="dir" location="${output}/${dirname}" /> <property name="dir" location="${output}/${dirname}" />
<property name="zip" location="${output}/${dirname}.zip" /> <property name="zip" location="${output}/${dirname}.zip" />
<property name="jar" location="${output}/${dirname}.jar" />
<property name="jar" location="${antunit.tmpdir}/${dirname}.jar" />
<property name="file" location="${output}/${dirname}/file.txt" /> <property name="file" location="${output}/${dirname}/file.txt" />
<condition property="offline"> <condition property="offline">


Loading…
Cancel
Save