You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ws.apache.org by ve...@apache.org on 2013/08/10 12:21:28 UTC

svn commit: r1512601 - /webservices/axiom/trunk/systests/jboss-tests/src/test/resources/arquillian.xml

Author: veithen
Date: Sat Aug 10 10:21:27 2013
New Revision: 1512601

URL: http://svn.apache.org/r1512601
Log:
Fixed an issue in the JBoss tests that occurs when JaCoCo is disabled.

Modified:
    webservices/axiom/trunk/systests/jboss-tests/src/test/resources/arquillian.xml

Modified: webservices/axiom/trunk/systests/jboss-tests/src/test/resources/arquillian.xml
URL: http://svn.apache.org/viewvc/webservices/axiom/trunk/systests/jboss-tests/src/test/resources/arquillian.xml?rev=1512601&r1=1512600&r2=1512601&view=diff
==============================================================================
--- webservices/axiom/trunk/systests/jboss-tests/src/test/resources/arquillian.xml (original)
+++ webservices/axiom/trunk/systests/jboss-tests/src/test/resources/arquillian.xml Sat Aug 10 10:21:27 2013
@@ -23,7 +23,9 @@
     <container qualifier="jbossas-managed" default="true">
         <configuration>
             <property name="jbossHome">${jboss.home}</property>
-            <property name="javaVmArguments">${jacoco.jbossArgLine} -Djboss.management.native.port=${jboss.managementPort}</property>
+            <!-- Arquillian gets confused if there is an extra space at the beginning of the arg line.
+                 Therefore we need to add a dummy argument to avoid that problem if JaCoCo is skipped. -->
+            <property name="javaVmArguments">-Ddummy ${jacoco.jbossArgLine} -Djboss.management.native.port=${jboss.managementPort}</property>
             <property name="managementPort">${jboss.managementPort}</property>
         </configuration>
     </container>