[Libreoffice-commits] core.git: unotest/source
Stephan Bergmann (via logerrit)
logerrit at kemper.freedesktop.org
Thu Feb 6 21:22:56 UTC 2020
unotest/source/cpp/officeconnection.cxx | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
New commits:
commit 5090ee7e32e1314285903eb6b30cf128e1195a2a
Author: Stephan Bergmann <sbergman at redhat.com>
AuthorDate: Thu Feb 6 19:38:46 2020 +0100
Commit: Stephan Bergmann <sbergman at redhat.com>
CommitDate: Thu Feb 6 22:22:23 2020 +0100
Fix mis-merge
d4b1d9b75572fdcc55a925254943a3cf29354f98 "sb123: #i111655# when, within build
env, calling javaldx within OOo installation sets, set UNO_JAVA_JFW_ENV_JREHOME,
but not UNO_JAVA_JFW_ENV_CLASSPATH" had removed the
-env:UNO_JAVA_JFW_ENV_CLASSPATH=true
arg, but 8c59580b88a33d7f0c892c9c53776716ad661fcf "Merge commit
'ooo/DEV300_m101' into integration/dev300_m101", in what looks like an
accidental mis-merge, brought it back
Change-Id: If2313642a1a737c9711fb36dcab5c340bf7dcecb
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88133
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman at redhat.com>
diff --git a/unotest/source/cpp/officeconnection.cxx b/unotest/source/cpp/officeconnection.cxx
index f89465b2c492..7a15161031e5 100644
--- a/unotest/source/cpp/officeconnection.cxx
+++ b/unotest/source/cpp/officeconnection.cxx
@@ -66,11 +66,10 @@ void OfficeConnection::setUp() {
OUString userArg("-env:UserInstallation=" + toAbsoluteFileUrl(argUser));
OUString jreArg(
"-env:UNO_JAVA_JFW_ENV_JREHOME=true");
- OUString classpathArg("-env:UNO_JAVA_JFW_ENV_CLASSPATH=true");
rtl_uString * args[] = {
noquickArg.pData, norestoreArg.pData,
nologoArg.pData, headlessArg.pData, acceptArg.pData, userArg.pData,
- jreArg.pData, classpathArg.pData };
+ jreArg.pData };
rtl_uString ** envs = nullptr;
OUString argEnv;
if (detail::getArgument("env", &argEnv))
More information about the Libreoffice-commits
mailing list