Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.test/library.xml')
-rw-r--r--bundles/org.eclipse.test/library.xml7
1 files changed, 5 insertions, 2 deletions
diff --git a/bundles/org.eclipse.test/library.xml b/bundles/org.eclipse.test/library.xml
index 5bda3123..2d70a406 100644
--- a/bundles/org.eclipse.test/library.xml
+++ b/bundles/org.eclipse.test/library.xml
@@ -43,8 +43,11 @@
<property file="${basedir}/finalPluginsVersions.properties" />
<echo message="basedir = ${basedir}" />
<condition property="extraVMargs" value="-javaagent:${basedir}/plugins/org.eclipse.test_${org.eclipse.test}/lib/jacocoagent.jar=destfile=${coverage-output}/jacoco${classname}${NOW.DSTAMP}_${NOW.TSTAMP}.exec">
- <not>
- <equals arg1="${test.target}" arg2="performance" />
+ <not>
+ <or>
+ <equals arg1="${test.target}" arg2="performance" />
+ <os family="windows" />
+ </or>
</not>
</condition>
<property name="extraVMargs" value="" />

Back to the top