summaryrefslogtreecommitdiff
path: root/unotest
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-10-29 00:12:52 +0100
committerMichael Stahl <mstahl@redhat.com>2013-10-29 00:58:44 +0100
commit18c702a8e14ae5a5335b78647d3bccbe6067858d (patch)
tree7e422804fa4ae2dc012800209fc0355df790c26c /unotest
parenta50682cd93589ad3242beae2ba14a655ab4c867f (diff)
gbuild: move unittest mock profile to WORKDIR
Change-Id: Idd6420a855fec8b44fce6c0694b491d5f1eec95e
Diffstat (limited to 'unotest')
-rw-r--r--unotest/source/cpp/bootstrapfixturebase.cxx5
1 files changed, 1 insertions, 4 deletions
diff --git a/unotest/source/cpp/bootstrapfixturebase.cxx b/unotest/source/cpp/bootstrapfixturebase.cxx
index fff21d4d85b7..5b6f9d3871c6 100644
--- a/unotest/source/cpp/bootstrapfixturebase.cxx
+++ b/unotest/source/cpp/bootstrapfixturebase.cxx
@@ -57,9 +57,6 @@ test::BootstrapFixtureBase::BootstrapFixtureBase()
m_aSrcRootPath = OUString::createFromAscii( pSrcRoot );
m_aSrcRootURL = getFileURLFromSystemPath(m_aSrcRootPath);
- m_aSolverRootPath = OUString::createFromAscii( pSolverRoot );
- m_aSolverRootURL = getFileURLFromSystemPath(m_aSolverRootPath);
-
m_aWorkdirRootPath = OUString::createFromAscii( pWorkdirRoot );
m_aWorkdirRootURL = getFileURLFromSystemPath(m_aWorkdirRootPath);
@@ -94,7 +91,7 @@ void test::BootstrapFixtureBase::setUp()
{
// set UserInstallation to user profile dir in test/user-template
rtl::Bootstrap aDefaultVars;
- OUString sUserInstallURL = m_aSolverRootURL + OUString("/unittest");
+ OUString sUserInstallURL = m_aWorkdirRootURL + OUString("/unittest");
aDefaultVars.set(OUString("UserInstallation"), sUserInstallURL);
m_xContext = comphelper::getProcessComponentContext();