| 97 | } |
| 98 | |
| 99 | void cDebugger::Error(const std::string& pMessage) { |
| 100 | ConsoleOpen(); |
| 101 | if (g_Fodder->mParams->mAppVeyor) { |
| 102 | std::string Command = "appveyor AddMessage "; |
| 103 | Command += "\"" + pMessage + "\""; |
| 104 | Command += " -Category Error"; |
| 105 | system(Command.c_str()); |
| 106 | } |
| 107 | else { |
| 108 | Output(pMessage + "\n"); |
| 109 | } |
| 110 | } |
| 111 | |
| 112 | void cDebugger::TestStart(const std::string& pName, const std::string& pGroup) { |
| 113 | ConsoleOpen(); |
no outgoing calls