From 18c702a8e14ae5a5335b78647d3bccbe6067858d Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Tue, 29 Oct 2013 00:12:52 +0100 Subject: gbuild: move unittest mock profile to WORKDIR Change-Id: Idd6420a855fec8b44fce6c0694b491d5f1eec95e --- unotest/source/cpp/bootstrapfixturebase.cxx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'unotest') 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(); -- cgit