aboutsummaryrefslogtreecommitdiffstats
path: root/make/build-junit.xml
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2010-04-10 02:42:25 +0200
committerSven Gothel <[email protected]>2010-04-10 02:42:25 +0200
commit98de1d96e77a1c1aad237a8e5c6c63e21bcb5fc2 (patch)
tree3a4c4ecce45257a396561af90e29e42063e45a5c /make/build-junit.xml
parent2e0905bb6d91c36aa9e848762641e4e3a5810c4b (diff)
Fix: Use file.seperator (win32); Use java.home/bin/java
Diffstat (limited to 'make/build-junit.xml')
-rw-r--r--make/build-junit.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/make/build-junit.xml b/make/build-junit.xml
index 74cb30606..58e8e3b7f 100644
--- a/make/build-junit.xml
+++ b/make/build-junit.xml
@@ -98,15 +98,15 @@
<property name="test.class.path" basedir="${classes}" relative="true" location="@{test.class.path.m}"/>
<var name="test.class.fqn" unset="true"/>
<pathconvert property="test.class.fqn">
- <fileset file="${classes}/${test.class.path}"/>
+ <fileset file="${classes}${file.separator}${test.class.path}"/>
<chainedmapper>
- <globmapper from="${classes.path}/*" to="*"/> <!-- rel. -->
+ <globmapper from="${classes.path}${file.separator}*" to="*"/> <!-- rel. -->
<packagemapper from="*.class" to="*"/> <!-- FQCN -->
</chainedmapper>
</pathconvert>
<var name="test.class.result.file" value="${results.junit}/TEST-${test.class.fqn}.xml"/>
<echo message="Testing ${test.class.fqn} -> ${test.class.result.file}"/>
- <apply dir="." executable="java"
+ <apply dir="." executable="${java.home}/bin/java"
parallel="false"
timeout="${batchtest.timeout}"
vmlauncher="false"