diff options
author | Caolán McNamara <caolanm@redhat.com> | 2010-10-13 11:32:23 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2010-10-13 11:32:23 +0100 |
commit | 5386970b250b6760a36677f07f4ca8dc33c12d23 (patch) | |
tree | 7116aaff10fbea1da044813067daaca280398580 /test | |
parent | f402b2f5af37b9dfa8175af8fb13f22602973f99 (diff) |
don't use the Unix splash screen app during the smoketest
Diffstat (limited to 'test')
-rw-r--r-- | test/source/cpp/officeconnection.cxx | 4 |
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; |