summaryrefslogtreecommitdiff
path: root/qadevOOo
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-03-15 08:48:49 +0200
committerNoel Grandin <noel@peralex.com>2016-03-15 08:49:28 +0200
commitfd91c0ac507ac2d565d5112b7dbd87014b142cf6 (patch)
tree6ffe568aca32a6bffb6c2299022264d976fa6d20 /qadevOOo
parentb47cb646ff2a62fcd3fac0e453a7261bbaefbcb7 (diff)
remove the office close timeout in subsequentcheck
and lets see if anyone complains Change-Id: I0ec236006476064e67cda9869ab45c1860ed351b
Diffstat (limited to 'qadevOOo')
-rw-r--r--qadevOOo/runner/helper/OfficeProvider.java10
-rw-r--r--qadevOOo/runner/lib/TestParameters.java1
-rw-r--r--qadevOOo/runner/util/PropertyName.java6
3 files changed, 0 insertions, 17 deletions
diff --git a/qadevOOo/runner/helper/OfficeProvider.java b/qadevOOo/runner/helper/OfficeProvider.java
index 584c4ca48ea9..880565896443 100644
--- a/qadevOOo/runner/helper/OfficeProvider.java
+++ b/qadevOOo/runner/helper/OfficeProvider.java
@@ -476,16 +476,6 @@ public class OfficeProvider implements AppProvider
desk.terminate();
dbg("Desktop terminated");
-
- try
- {
- final int closeTime = param.getInt(util.PropertyName.OFFICE_CLOSE_TIME_OUT);
- dbg("the Office has " + closeTime / 1000 + " seconds for closing...");
- Thread.sleep(closeTime);
- }
- catch (InterruptedException e)
- {
- }
}
}
catch (com.sun.star.uno.Exception ue)
diff --git a/qadevOOo/runner/lib/TestParameters.java b/qadevOOo/runner/lib/TestParameters.java
index 33fbd301d7e7..d5fdf5fb404f 100644
--- a/qadevOOo/runner/lib/TestParameters.java
+++ b/qadevOOo/runner/lib/TestParameters.java
@@ -157,7 +157,6 @@ public class TestParameters extends HashMap<String,Object> {
put(PropertyName.TIME_OUT, Integer.valueOf(3000000));
put(PropertyName.THREAD_TIME_OUT, Integer.valueOf(3000000));
put(PropertyName.AUTO_RESTART, Boolean.FALSE);
- put(PropertyName.OFFICE_CLOSE_TIME_OUT, Integer.valueOf(15000));
// get the operating system
put(PropertyName.OPERATING_SYSTEM, getSOCompatibleOSName());
diff --git a/qadevOOo/runner/util/PropertyName.java b/qadevOOo/runner/util/PropertyName.java
index 83a0b7f4716f..b15fc88e1db2 100644
--- a/qadevOOo/runner/util/PropertyName.java
+++ b/qadevOOo/runner/util/PropertyName.java
@@ -93,12 +93,6 @@ public interface PropertyName {
*/
String THREAD_TIME_OUT = "ThreadTimeOut";
/**
- * parameter name: "OfficeCloseTimeOut"
- * This parameter contains the time which the office could use to close for
- * itself before it is destroyed. Default is 15000 ms
- */
- String OFFICE_CLOSE_TIME_OUT = "OfficeCloseTimeOut";
- /**
* parameter name: "OperatingSystem"
*/
String OPERATING_SYSTEM = "OperatingSystem";