Comments and popen solution (commented)
[anna.git] / example / diameter / launcher / testing / TestStep.hpp
index 38f40b6..1cb062d 100644 (file)
@@ -213,7 +213,7 @@ class TestStepCmd : public TestStep {
   bool a_threadDeprecated;
   int a_resultCode;
   std::string a_errorMsg;
-  //std::string a_output;
+  //std::string a_output; // for POPEN
 
   public:
     TestStepCmd(TestCase *testCase) : TestStep(testCase), a_threadRunning(false), a_threadDeprecated(false), a_resultCode(-2)/*, a_output("")*/, a_errorMsg("") { a_type = Type::Cmd; }
@@ -228,7 +228,7 @@ class TestStepCmd : public TestStep {
     int getResultCode() const throw() { return a_resultCode; }
     void setErrorMsg(const std::string &em) throw() { a_errorMsg = em; }
     const std::string &getErrorMsg() const throw() { return a_errorMsg; }
-    //void setOutput(const std::string &output) throw() { a_output = output; }
+    //void appendOutput(const std::string &output) throw() { a_output += output; }
     //const std::string &getOutput() const throw() { return a_output; }
 
     void setScript(const std::string &script) throw() { a_script = script; }