summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2010-10-13 11:32:23 +0100
committerCaolán McNamara <caolanm@redhat.com>2010-10-13 11:32:23 +0100
commit5386970b250b6760a36677f07f4ca8dc33c12d23 (patch)
tree7116aaff10fbea1da044813067daaca280398580 /test
parentf402b2f5af37b9dfa8175af8fb13f22602973f99 (diff)
don't use the Unix splash screen app during the smoketest
Diffstat (limited to 'test')
-rw-r--r--test/source/cpp/officeconnection.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/source/cpp/officeconnection.cxx b/test/source/cpp/officeconnection.cxx
index 88a3806e7271..d8198a004a92 100644
--- a/test/source/cpp/officeconnection.cxx
+++ b/test/source/cpp/officeconnection.cxx
@@ -76,6 +76,8 @@ void OfficeConnection::setUp() {
rtl::OUString nofirstArg(
RTL_CONSTASCII_USTRINGPARAM("-nofirststartwizard"));
rtl::OUString norestoreArg(RTL_CONSTASCII_USTRINGPARAM("-norestore"));
+ //Disable use of the unix standalone splash screen app for the tests
+ rtl::OUString noSplashArg(RTL_CONSTASCII_USTRINGPARAM("-no-oosplash"));
rtl::OUString acceptArg(
rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("-accept=")) + desc +
rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(";urp")));
@@ -93,7 +95,7 @@ void OfficeConnection::setUp() {
RTL_CONSTASCII_USTRINGPARAM(
"-env:UNO_JAVA_JFW_ENV_CLASSPATH=true"));
rtl_uString * args[] = {
- noquickArg.pData, nofirstArg.pData, norestoreArg.pData,
+ noquickArg.pData, nofirstArg.pData, norestoreArg.pData, noSplashArg.pData,
acceptArg.pData, userArg.pData, jreArg.pData, classpathArg.pData };
rtl_uString ** envs = 0;
rtl::OUString argEnv;