Commit 70ab239b authored by John Selbie's avatar John Selbie

Simple client fix. filtering test would report failure if behavior test failed

parent 1039705c
...@@ -309,8 +309,8 @@ void DumpResults(StunClientLogicConfig& config, StunClientResults& results) ...@@ -309,8 +309,8 @@ void DumpResults(StunClientLogicConfig& config, StunClientResults& results)
if (config.fFilteringTest) if (config.fFilteringTest)
{ {
Logging::LogMsg(LL_ALWAYS, "Filtering test: %s", results.fBehaviorTestSuccess?"success":"fail"); Logging::LogMsg(LL_ALWAYS, "Filtering test: %s", results.fFilteringTestSuccess?"success":"fail");
if (results.fBehaviorTestSuccess) if (results.fFilteringTestSuccess)
{ {
NatFilteringToString(results.filtering, &strResult); NatFilteringToString(results.filtering, &strResult);
Logging::LogMsg(LL_ALWAYS, "Nat filtering: %s", strResult.c_str()); Logging::LogMsg(LL_ALWAYS, "Nat filtering: %s", strResult.c_str());
......
...@@ -26,8 +26,6 @@ HRESULT CTestCmdLineParser::Run() ...@@ -26,8 +26,6 @@ HRESULT CTestCmdLineParser::Run()
{ {
HRESULT hr = S_OK; HRESULT hr = S_OK;
typedef const char* PCSTR;
//char* argv[] = {(char*)"app", (char*)"--zebra", (char*)"--yak=123", (char*)"--walrus=456", (char*)"--vulture"}; //char* argv[] = {(char*)"app", (char*)"--zebra", (char*)"--yak=123", (char*)"--walrus=456", (char*)"--vulture"};
const char* argv[5] = {}; const char* argv[5] = {};
argv[0] = "app"; argv[0] = "app";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment