[seam-commits] Seam SVN: r8208 - in trunk/examples: wiki and 1 other directory.
seam-commits at lists.jboss.org
seam-commits at lists.jboss.org
Fri May 16 13:43:09 EDT 2008
Author: pete.muir at jboss.org
Date: 2008-05-16 13:43:09 -0400 (Fri, 16 May 2008)
New Revision: 8208
Modified:
trunk/examples/build.xml
trunk/examples/wiki/build.xml
Log:
Use line not value
Modified: trunk/examples/build.xml
===================================================================
--- trunk/examples/build.xml 2008-05-16 17:31:05 UTC (rev 8207)
+++ trunk/examples/build.xml 2008-05-16 17:43:09 UTC (rev 8208)
@@ -951,17 +951,17 @@
</target>
<target name="test" depends="buildtest, copyjbossembedded,getemma" description="Run the tests">
- <taskdef resource="testngtasks" classpathref="build.classpath" />
+ <taskdef resource="testngtasks" classpathref="test.classpath" />
<testng outputdir="${test-report.dir}">
- <jvmarg value="-Xmx800M" />
- <jvmarg value="-Djava.awt.headless=true" />
- <jvmarg value="-Demma.coverage.out.file=${coverage.ec}" />
- <jvmarg value="-Djava.endorsed.dirs=${endorsed.dir}" />
- <jvmarg value="${testng.jvmargs}" />
+ <jvmarg line="-Xmx800M" />
+ <jvmarg line="-Djava.awt.headless=true" />
+ <jvmarg line="-Demma.coverage.out.file=${coverage.ec}" />
+ <jvmarg line="-Djava.endorsed.dirs=${endorsed.dir}" />
+ <jvmarg line="${testng.jvmargs}" />
<classpath>
- <path refid="test.classpath" />
- <path refid="runtime.emma.path" />
- </classpath>
+ <path refid="test.classpath" />
+ <path refid="runtime.emma.path" />
+ </classpath>
<xmlfileset dir="${src.test.dir}" includes="**/testng.xml" />
</testng>
<echo>You can increase the logging by editing bootstrap/log4j.xml</echo>
Modified: trunk/examples/wiki/build.xml
===================================================================
--- trunk/examples/wiki/build.xml 2008-05-16 17:31:05 UTC (rev 8207)
+++ trunk/examples/wiki/build.xml 2008-05-16 17:43:09 UTC (rev 8208)
@@ -494,9 +494,9 @@
</classpath>
<xmlfileset dir="${src.test.dir}" includes="*.tng.xml" />
<jvmarg line="${testng.jvmargs}"/>
- <jvmarg value="-Demma.coverage.out.file=${coverage.ec}" />
+ <jvmarg line="-Demma.coverage.out.file=${coverage.ec}" />
<!-- Needed for running Embedded JBoss under JDK 6 -->
- <jvmarg value="-Djava.endorsed.dirs=${seam.dir}/classes/endorsed" />
+ <jvmarg line="-Djava.endorsed.dirs=${seam.dir}/classes/endorsed" />
</testng>
<echo message="Please read the test output in directory: ${test.output.dir}"/>
</target>
More information about the seam-commits
mailing list