summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDavid Wagner <david.wagner@intel.com>2015-01-22 12:01:38 +0100
committerDavid Wagner <david.wagner@intel.com>2015-01-22 12:01:38 +0100
commite4bdf5d66598def59bc71ea9493e6efd5a90b7de (patch)
tree8d0b71f85e07f2932c75a6bae1a6995a860aa131 /test
parent1404cf730742a1adb0359bbc8c0ff79f216c4cb6 (diff)
parentcf428e5ee22d8bb8a182d81f0433aeccf89fa810 (diff)
downloadexternal_parameter-framework-e4bdf5d66598def59bc71ea9493e6efd5a90b7de.zip
external_parameter-framework-e4bdf5d66598def59bc71ea9493e6efd5a90b7de.tar.gz
external_parameter-framework-e4bdf5d66598def59bc71ea9493e6efd5a90b7de.tar.bz2
Merge pull request #35 from 01org/fix-test-platform-boolean-getters
test-platform: fix boolean remote getter commands output
Diffstat (limited to 'test')
-rw-r--r--test/test-platform/TestPlatform.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/test-platform/TestPlatform.cpp b/test/test-platform/TestPlatform.cpp
index f1e99b6..b2b895c 100644
--- a/test/test-platform/TestPlatform.cpp
+++ b/test/test-platform/TestPlatform.cpp
@@ -245,11 +245,10 @@ CTestPlatform::CommandReturn CTestPlatform::getter(
const IRemoteCommand& remoteCommand, string& strResult)
{
(void)remoteCommand;
- (void)strResult;
strResult = (_pParameterMgrPlatformConnector->*getFunction)() ? "true" : "false";
- return CTestPlatform::CCommandHandler::EDone;
+ return CTestPlatform::CCommandHandler::ESucceeded;
}
CTestPlatform::CommandReturn CTestPlatform::setCriterionState(