summaryrefslogtreecommitdiffstats
path: root/src/usr/expaccess/test/exptest_utils.C
diff options
context:
space:
mode:
Diffstat (limited to 'src/usr/expaccess/test/exptest_utils.C')
-rw-r--r--src/usr/expaccess/test/exptest_utils.C23
1 files changed, 1 insertions, 22 deletions
diff --git a/src/usr/expaccess/test/exptest_utils.C b/src/usr/expaccess/test/exptest_utils.C
index 5209a318d..46421fc4a 100644
--- a/src/usr/expaccess/test/exptest_utils.C
+++ b/src/usr/expaccess/test/exptest_utils.C
@@ -28,10 +28,9 @@
namespace exptest
{
- errlHndl_t loadModule(bool & o_module_loaded, const char * i_modName)
+ errlHndl_t loadModule(const char * i_modName)
{
errlHndl_t err = NULL;
- o_module_loaded = false;
// VFS functions only compilable in non-runtime environment
#ifndef __HOSTBOOT_RUNTIME
@@ -44,7 +43,6 @@ namespace exptest
}
else
{
- o_module_loaded = true;
FAPI_INF("loadModule: %s loaded", i_modName);
}
}
@@ -52,25 +50,6 @@ namespace exptest
return err;
}
- errlHndl_t unloadModule(const char * i_modName)
- {
- errlHndl_t err = NULL;
-
- // VFS function only compilable in non-runtime environment
- #ifndef __HOSTBOOT_RUNTIME
- err = VFS::module_unload(i_modName);
- if(err)
- {
- TS_FAIL("unloadModule() - %s unload failed", i_modName );
- }
- else
- {
- FAPI_INF("unloadModule: %s unloaded", i_modName);
- }
- #endif
- return err;
- }
-
TARGETING::HB_MUTEX_SERIALIZE_TEST_LOCK_ATTR getTestMutex(void)
{
TARGETING::HB_MUTEX_SERIALIZE_TEST_LOCK_ATTR pMutex = nullptr;
OpenPOWER on IntegriCloud