summaryrefslogtreecommitdiff
path: root/tools/source/testtoolloader/testtoolloader.cxx
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2008-03-18 11:28:12 +0000
committerVladimir Glazounov <vg@openoffice.org>2008-03-18 11:28:12 +0000
commitdc852d4c737ad2eb21f738ef25ec858b6f279d37 (patch)
tree9a64cdd7bf5976e999509efef631479d46da821c /tools/source/testtoolloader/testtoolloader.cxx
parent58bc88bccf7581c23ddfb608ef609b63cc5ad4a3 (diff)
INTEGRATION: CWS sb83 (1.7.80); FILE MERGED
2008/02/19 11:04:41 sb 1.7.80.1: #i84200# look for sts lib next to tl lib
Diffstat (limited to 'tools/source/testtoolloader/testtoolloader.cxx')
-rw-r--r--tools/source/testtoolloader/testtoolloader.cxx47
1 files changed, 13 insertions, 34 deletions
diff --git a/tools/source/testtoolloader/testtoolloader.cxx b/tools/source/testtoolloader/testtoolloader.cxx
index 4f935456f598..d48b48604732 100644
--- a/tools/source/testtoolloader/testtoolloader.cxx
+++ b/tools/source/testtoolloader/testtoolloader.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: testtoolloader.cxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: vg $ $Date: 2007-04-11 20:22:50 $
+ * last change: $Author: vg $ $Date: 2008-03-18 12:28:12 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -41,9 +41,6 @@
#ifndef _OSL_MODULE_H_
#include <osl/module.h>
#endif
-#ifndef _OSL_FILE_HXX_
-#include <osl/file.hxx>
-#endif
#ifndef _RTL_LOGFILE_HXX_
#include <rtl/logfile.hxx>
#endif
@@ -90,6 +87,7 @@ String GetCommandLineParam( sal_uInt32 nParam )
}
}
+extern "C" { static void SAL_CALL thisModule() {} }
void InitTestToolLib()
{
@@ -114,39 +112,20 @@ void InitTestToolLib()
OUString aFuncName( RTL_CONSTASCII_USTRINGPARAM( "CreateRemoteControl" ));
- OUString aModulePath;
-
- ::vos::OStartupInfo().getExecutableFile( aModulePath );
- sal_uInt32 lastIndex = aModulePath.lastIndexOf('/');
- if ( lastIndex > 0 )
- aModulePath = aModulePath.copy( 0, lastIndex+1 );
-
- aModulePath += OUString::createFromAscii( SVLIBRARY( "sts" ) );
-
- // Shortcut for Performance: We expect that the test tool library is not installed
- // (only for testing purpose). It should be located beside our executable.
- // We don't want to pay for searching through LD_LIBRARY_PATH so we check for
- // existence only in our executable path!!
- osl::DirectoryItem aItem;
- osl::FileBase::RC nResult = osl::DirectoryItem::get( aModulePath, aItem );
- if ( nResult == osl::FileBase::E_None )
+ aTestToolModule = osl_loadModuleRelative(
+ &thisModule,
+ rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(SVLIBRARY("sts"))).pData,
+ SAL_LOADMODULE_DEFAULT );
+ if ( aTestToolModule )
{
- aTestToolModule = osl_loadModule( aModulePath.pData, SAL_LOADMODULE_DEFAULT );
- if ( aTestToolModule )
- {
- oslGenericFunction pInitFunc = osl_getFunctionSymbol(
- aTestToolModule, aFuncName.pData );
- if ( pInitFunc )
- (reinterpret_cast< pfunc_CreateRemoteControl >(pInitFunc))();
- else
- {
- DBG_ERROR1( "Unable to get Symbol 'CreateRemoteControl' from library %s while loading testtool support.", SVLIBRARY( "sts" ) );
- }
- }
+ oslGenericFunction pInitFunc = osl_getFunctionSymbol(
+ aTestToolModule, aFuncName.pData );
+ if ( pInitFunc )
+ (reinterpret_cast< pfunc_CreateRemoteControl >(pInitFunc))();
else
{
- DBG_ERROR1( "Error loading library %s while loading testtool support.", SVLIBRARY( "sts" ) );
+ DBG_ERROR1( "Unable to get Symbol 'CreateRemoteControl' from library %s while loading testtool support.", SVLIBRARY( "sts" ) );
}
}
else