Kaydet (Commit) fd91c0ac authored tarafından Noel Grandin's avatar Noel Grandin

remove the office close timeout in subsequentcheck

and lets see if anyone complains

Change-Id: I0ec236006476064e67cda9869ab45c1860ed351b
üst b47cb646
......@@ -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)
......
......@@ -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());
......
......@@ -92,12 +92,6 @@ public interface PropertyName {
* by the complex tests
*/
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"
*/
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment