Author: tfaber Date: Sun Jul 26 10:02:03 2015 New Revision: 68578
URL: http://svn.reactos.org/svn/reactos?rev=68578&view=rev Log: [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)
Modified: trunk/rostests/rosautotest/CWebService.cpp
Modified: trunk/rostests/rosautotest/CWebService.cpp URL: http://svn.reactos.org/svn/reactos/trunk/rostests/rosautotest/CWebService.cp... ============================================================================== --- trunk/rostests/rosautotest/CWebService.cpp [iso-8859-1] (original) +++ trunk/rostests/rosautotest/CWebService.cpp [iso-8859-1] Sun Jul 26 10:02:03 2015 @@ -234,7 +234,7 @@ Data += "&suiteid="; Data += SuiteID; Data += "&log="; - Data += TestInfo->Log; + Data += EscapeString(TestInfo->Log);
Response.reset(DoRequest(Data));