let unit tests use the solver's config xml with OOO_CONFIG_REGISTRY_DIR

This commit is contained in:
Michael Meeks
2011-09-02 15:20:53 +01:00
parent 7872be8ab6
commit da1073f130

View File

@@ -511,7 +511,20 @@ Components::Components(
lock_ = lock(); lock_ = lock();
OSL_ASSERT(context.is()); OSL_ASSERT(context.is());
RTL_LOGFILE_TRACE_AUTHOR("configmgr", "sb", "begin parsing");
// Check if we are being used for in-tree unit tests ...
rtl::OUString aUnitTestDir;
if (rtl::Bootstrap::get( rtl::OUString(
RTL_CONSTASCII_USTRINGPARAM("OOO_CONFIG_REGISTRY_DIR") ), aUnitTestDir))
{
parseXcsXcuLayer( 0, aUnitTestDir );
// next is required for the (somewhat strange) filter configuration
parseModuleLayer( 1, aUnitTestDir + rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("/spool")));
return;
}
RTL_LOGFILE_TRACE("configmgr : begin parsing");
parseXcsXcuLayer( parseXcsXcuLayer(
0, 0,
expand( expand(
@@ -582,7 +595,7 @@ Components::Components(
"PackageRegistryBackend/configmgr.ini"))), "PackageRegistryBackend/configmgr.ini"))),
true); true);
parseModificationLayer(); parseModificationLayer();
RTL_LOGFILE_TRACE_AUTHOR("configmgr", "sb", "end parsing"); RTL_LOGFILE_TRACE("configmgr : end parsing");
} }
Components::~Components() Components::~Components()