[ROSAUTOTEST]

- When directly submitting the results to the web service, make sure to URL-encode the test log, or & signs will terminate the log and make Testman see the test as crashed (and have all other kinds of possible consequences)

svn path=/trunk/; revision=68578
This commit is contained in:
Thomas Faber 2015-07-26 10:02:03 +00:00
parent 0436f08597
commit e6d1e20049

View file

@ -234,7 +234,7 @@ CWebService::Submit(const char* TestType, CTestInfo* TestInfo)
Data += "&suiteid=";
Data += SuiteID;
Data += "&log=";
Data += TestInfo->Log;
Data += EscapeString(TestInfo->Log);
Response.reset(DoRequest(Data));