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/08/31 06:42:13 UTC

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

Author: liuzhe
Date: Fri Aug 31 04:42:13 2012
New Revision: 1379285

URL: http://svn.apache.org/viewvc?rev=1379285&view=rev
Log:
Add detect.testenv target. Fix Typo

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=1379285&r1=1379284&r2=1379285&view=diff
==============================================================================
--- incubator/ooo/trunk/test/build.xml (original)
+++ incubator/ooo/trunk/test/build.xml Fri Aug 31 04:42:13 2012
@@ -281,10 +281,10 @@
 	</target>
 	
 	<target name="detect.testenv" unless="report.test.skip">
-		<exec outputproperty="test.os.name" executable="lsb_release" failifexecutionfails="false" os="linux">
+		<exec outputproperty="test.os.name" executable="lsb_release" failifexecutionfails="false" os="Linux">
 			<arg line="-is" />
 		</exec>
-		<exec outputproperty="test.os.version" executable="lsb_release" failifexecutionfails="false" os="linux">
+		<exec outputproperty="test.os.version" executable="lsb_release" failifexecutionfails="false" os="Linux">
 			<arg line="-rs" />
 		</exec>
 		<property name="test.os.name" value="${os.name}" />