You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by li...@apache.org on 2012/10/25 04:04:32 UTC

svn commit: r1401951 - /incubator/ooo/trunk/test/build.xml

Author: liuzhe
Date: Thu Oct 25 02:04:32 2012
New Revision: 1401951

URL: http://svn.apache.org/viewvc?rev=1401951&view=rev
Log:
Developers can use property test.args to change test suite now. e.g. ant "-Dtest.args=-tp fvt" to run fvt instead of bvt.

Modified:
    incubator/ooo/trunk/test/build.xml

Modified: incubator/ooo/trunk/test/build.xml
URL: http://svn.apache.org/viewvc/incubator/ooo/trunk/test/build.xml?rev=1401951&r1=1401950&r2=1401951&view=diff
==============================================================================
--- incubator/ooo/trunk/test/build.xml (original)
+++ incubator/ooo/trunk/test/build.xml Thu Oct 25 02:04:32 2012
@@ -155,10 +155,10 @@
 			<os family="windows" />
 		</condition>
 		<property name="test.executable" value="./run"/>
+		<property name="test.args" value="-tp bvt"/>
 		<exec executable="${test.executable}">
 			<arg value="${test.arg0}"/>
-			<arg value="-tp"/>
-			<arg value="bvt"/>
+			<arg line="${test.args}"/>
 		</exec>
 	</target>
 </project>