mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
[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:
parent
0436f08597
commit
e6d1e20049
1 changed files with 1 additions and 1 deletions
|
@ -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));
|
||||
|
||||
|
|
Loading…
Reference in a new issue