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/09/17 18:16:55 UTC

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

Author: liuzhe
Date: Mon Sep 17 16:16:55 2012
New Revision: 1386690

URL: http://svn.apache.org/viewvc?rev=1386690&view=rev
Log:
#120987 - Enable test automation framework to group test cases. Part 1

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=1386690&r1=1386689&r2=1386690&view=diff
==============================================================================
--- incubator/ooo/trunk/test/build.xml (original)
+++ incubator/ooo/trunk/test/build.xml Mon Sep 17 16:16:55 2012
@@ -69,7 +69,7 @@
 	</target>
 
 	<target name="testcommon.compile" depends="testcommon.init, prepare.junit">
-		<javac destdir="testcommon/bin" debug="on" source="1.6" encoding="utf-8" includeantruntime="false">
+		<javac destdir="testcommon/bin" debug="on" source="1.6" target="1.6" encoding="utf-8" includeantruntime="false">
 			<src path="testcommon/source"/>
 			<classpath>
 				<fileset dir="lib">
@@ -89,7 +89,7 @@
 	</target>
 
 	<target name="testgui.compile" depends="testcommon.compile, testgui.init">
-		<javac destdir="testgui/bin" debug="on" source="1.6" encoding="utf-8" includeantruntime="false">
+		<javac destdir="testgui/bin" debug="on" source="1.6" target="1.6" encoding="utf-8" includeantruntime="false">
 			<src path="testgui/source"/>
 			<classpath>
 				<fileset dir="lib">
@@ -110,7 +110,7 @@
 	</target>
 
 	<target name="testuno.compile" depends="testcommon.compile, testuno.init">
-		<javac destdir="testuno/bin" debug="on" source="1.6" encoding="utf-8" includeantruntime="false">
+		<javac destdir="testuno/bin" debug="on" source="1.6" target="1.6" encoding="utf-8" includeantruntime="false">
 			<src path="testuno/source"/>
 			<classpath>
 				<fileset dir="lib">