Linux CommandExecutor #536

Merged
muellerr merged 9 commits from eive/fsfw:mueller/cmd-executor into development 2022-02-02 10:17:52 +01:00
1 changed files with 4 additions and 2 deletions
Showing only changes of commit acbc2cd749 - Show all commits

View File

@ -59,9 +59,11 @@ TEST_CASE( "Command Executor" , "[cmd-exec]") {
REQUIRE(outputBuffer.getAvailableReadData() == 12);
uint8_t readBuffer[32];
REQUIRE(outputBuffer.readData(readBuffer, 12) == HasReturnvaluesIF::RETURN_OK);
std::string readString(reinterpret_cast<char*>(readBuffer));
std::string cmpString = "Hello World\n";
int cmpResult = strcmp(reinterpret_cast<char*>(readBuffer), cmpString.c_str());
CHECK(cmpResult == 0);
//int cmpResult = strcmp(reinterpret_cast<char*>(readBuffer), cmpString.c_str());
int cmpResult = (readString == cmpString);
CHECK(cmpResult);
outputBuffer.deleteData(12, true);
// Test more complex command
result = cmdExecutor.load("ping -c 1 localhost", false, false);