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/26 11:16:53 UTC

svn commit: r1402454 - in /incubator/ooo/trunk/test: run.bat testgui/source/pvt/gui/Benchmark.java

Author: liuzhe
Date: Fri Oct 26 09:16:53 2012
New Revision: 1402454

URL: http://svn.apache.org/viewvc?rev=1402454&view=rev
Log:
Make run.bat not to print license header

Modified:
    incubator/ooo/trunk/test/run.bat
    incubator/ooo/trunk/test/testgui/source/pvt/gui/Benchmark.java

Modified: incubator/ooo/trunk/test/run.bat
URL: http://svn.apache.org/viewvc/incubator/ooo/trunk/test/run.bat?rev=1402454&r1=1402453&r2=1402454&view=diff
==============================================================================
--- incubator/ooo/trunk/test/run.bat (original)
+++ incubator/ooo/trunk/test/run.bat Fri Oct 26 09:16:53 2012
@@ -1,3 +1,4 @@
+@echo OFF
 rem *************************************************************
 rem  
 rem  Licensed to the Apache Software Foundation (ASF) under one
@@ -19,7 +20,6 @@ rem  under the License.
 rem  
 rem *************************************************************
 
-@echo OFF
 set BASE=%~pd0%
 java -cp "%BASE%\lib\junit.jar;%BASE%\testcommon\bin;%BASE%\testgui\bin;%BASE%\testuno\bin;%BASE%\testgui\data;%BASE%\testuno\data" org.openoffice.test.Run -r org.openoffice.test.common.Installer -l org.openoffice.test.common.XMLReporter -l org.openoffice.test.common.ReportUploader "-Dtestspace=%BASE%\testspace" -Dsingleton=true %*
 

Modified: incubator/ooo/trunk/test/testgui/source/pvt/gui/Benchmark.java
URL: http://svn.apache.org/viewvc/incubator/ooo/trunk/test/testgui/source/pvt/gui/Benchmark.java?rev=1402454&r1=1402453&r2=1402454&view=diff
==============================================================================
--- incubator/ooo/trunk/test/testgui/source/pvt/gui/Benchmark.java (original)
+++ incubator/ooo/trunk/test/testgui/source/pvt/gui/Benchmark.java Fri Oct 26 09:16:53 2012
@@ -59,7 +59,7 @@ public class Benchmark {
 	
 	private static final double INTERVAL = 0.1; 
 	
-	private static int repeat = 8;
+	private static int repeat = 2;
 	
 	private int i  = 0;
 	
@@ -76,7 +76,7 @@ public class Benchmark {
 	
 	@AfterClass
 	public static void afterClass() throws Exception {
-		app.stop();
+		//app.stop();
 	}
 	
 	@Before