summaryrefslogtreecommitdiffstats
path: root/test/test-platform/TestPlatform.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/test-platform/TestPlatform.cpp')
-rw-r--r--test/test-platform/TestPlatform.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test-platform/TestPlatform.cpp b/test/test-platform/TestPlatform.cpp
index fff0a8d..af741ed 100644
--- a/test/test-platform/TestPlatform.cpp
+++ b/test/test-platform/TestPlatform.cpp
@@ -44,7 +44,7 @@ public:
};
-CTestPlatform::CTestPlatform(const string& strClass) :
+CTestPlatform::CTestPlatform(const string& strClass, int iPortNumber) :
_pParameterMgrPlatformConnector(new CParameterMgrPlatformConnector(strClass)),
_pParameterMgrPlatformConnectorLogger(new CParameterMgrPlatformConnectorLogger)
{
@@ -62,7 +62,7 @@ CTestPlatform::CTestPlatform(const string& strClass) :
_pCommandHandler->addCommandParser("applyConfigurations", &CTestPlatform::applyConfigurationsCommandProcess, 0, "", "Apply configurations selected by current selection criteria states");
// Create server
- _pRemoteProcessorServer = new CRemoteProcessorServer(5001, _pCommandHandler);
+ _pRemoteProcessorServer = new CRemoteProcessorServer(iPortNumber, _pCommandHandler);
_pParameterMgrPlatformConnector->setLogger(_pParameterMgrPlatformConnectorLogger);
}