summaryrefslogtreecommitdiff
path: root/qadevOOo/runner
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2005-11-02 16:43:53 +0000
committerKurt Zenker <kz@openoffice.org>2005-11-02 16:43:53 +0000
commit5396c0d07406d0118c355f77bcdde062701c0d8b (patch)
treeb28cd52c46299f51d6ea1104cb1cd766469acd5f /qadevOOo/runner
parent5552c4417429cbc58fef2d95b4eaacc869885fc4 (diff)
INTEGRATION: CWS qadev24 (1.9.2); FILE MERGED
2005/09/19 21:42:13 cn 1.9.2.2: RESYNC: (1.9-1.10); FILE MERGED 2005/08/30 13:09:33 cn 1.9.2.1: #i53977# the closing time for a self closing of the office get a new parameter 'OfficeCloseTimeOut' which is 5000 ms by default
Diffstat (limited to 'qadevOOo/runner')
-rw-r--r--qadevOOo/runner/lib/TestParameters.java11
1 files changed, 9 insertions, 2 deletions
diff --git a/qadevOOo/runner/lib/TestParameters.java b/qadevOOo/runner/lib/TestParameters.java
index 9047c7b19490..c40190981a96 100644
--- a/qadevOOo/runner/lib/TestParameters.java
+++ b/qadevOOo/runner/lib/TestParameters.java
@@ -4,9 +4,9 @@
*
* $RCSfile: TestParameters.java,v $
*
- * $Revision: 1.10 $
+ * $Revision: 1.11 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 17:24:15 $
+ * last change: $Author: kz $ $Date: 2005-11-02 17:43:53 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -173,6 +173,12 @@ public class TestParameters extends Hashtable {
*/
public Integer ThreadTimeOut = new Integer(30000);
+ /*
+ * This parameter contains the time which the office could use to close for
+ * itself before its destroyed. Default is 5000 ms
+ */
+ public Integer OfficeCloseTimeOut = new Integer(5000);
+
/**
* Wraper around "get()" with some debug output
* @param key A key of this table.
@@ -268,6 +274,7 @@ public class TestParameters extends Hashtable {
put(PropertyName.TIME_OUT,TimeOut);
put(PropertyName.THREAD_TIME_OUT,ThreadTimeOut);
put(PropertyName.AUTO_RESTART,AutoRestart?Boolean.TRUE:Boolean.FALSE);
+ put(PropertyName.OFFICE_CLOSE_TIME_OUT, OfficeCloseTimeOut);
// get the operating system
put(PropertyName.OPERATING_SYSTEM, getSOCompatibleOSName());