summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjoern Michaelsen <bjoern.michaelsen@canonical.com>2011-06-01 16:43:04 +0200
committerBjoern Michaelsen <bjoern.michaelsen@canonical.com>2011-06-01 19:13:48 +0200
commit79cfff0b519f6970aea23de3ee6fd7080f65b832 (patch)
treecac0ad41962fc9bf347e9df98ff14526f35a6ca4
parentc414bb1dc75b3db4fa88874ff5f978e6a0d18d56 (diff)
add debug hook for junit tests
-rw-r--r--test/source/java/org/openoffice/test/OfficeConnection.java8
1 files changed, 7 insertions, 1 deletions
diff --git a/test/source/java/org/openoffice/test/OfficeConnection.java b/test/source/java/org/openoffice/test/OfficeConnection.java
index 6aa164aed..4cc59a214 100644
--- a/test/source/java/org/openoffice/test/OfficeConnection.java
+++ b/test/source/java/org/openoffice/test/OfficeConnection.java
@@ -62,7 +62,7 @@ public final class OfficeConnection {
description = "pipe,name=oootest" + UUID.randomUUID();
ProcessBuilder pb = new ProcessBuilder(
sofficeArg.substring("path:".length()), "--quickstart=no",
- "--nofirststartwizard", "--norestore",
+ "--nofirststartwizard", "--norestore", "--nologo",
"--accept=" + description + ";urp",
"-env:UserInstallation=" + Argument.get("user"),
"-env:UNO_JAVA_JFW_ENV_JREHOME=true",
@@ -104,6 +104,12 @@ public final class OfficeConnection {
assertNull(waitForProcess(process, 1000)); // 1 sec
}
}
+ try {
+ ProcessBuilder debugbp = new ProcessBuilder(
+ Argument.get("debugcommand").split(" "));
+ debugbp.start();
+ Thread.sleep(1000);
+ } catch(Exception e) {}
}
/** Shut down the OOo instance.