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.c…
==============================================================================
--- 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));
Author: tfaber
Date: Sun Jul 26 08:41:13 2015
New Revision: 68575
URL: http://svn.reactos.org/svn/reactos?rev=68575&view=rev
Log:
[USER32_WINETEST]
- Skip user32:msg_paint test_paint_messages if running on Windows in non-interactive mode. This should allow WHS-Testbot to get a bit further
ROSTESTS-185
ONLINE-441 ROSTESTS-184
Modified:
trunk/rostests/winetests/user32/msg.c
Modified: trunk/rostests/winetests/user32/msg.c
URL: http://svn.reactos.org/svn/reactos/trunk/rostests/winetests/user32/msg.c?re…
==============================================================================
--- trunk/rostests/winetests/user32/msg.c [iso-8859-1] (original)
+++ trunk/rostests/winetests/user32/msg.c [iso-8859-1] Sun Jul 26 08:41:13 2015
@@ -15035,6 +15035,14 @@
{
init_tests();
test_scrollwindowex();
+#ifdef __REACTOS__
+ if (!winetest_interactive &&
+ !strcmp(winetest_platform, "windows"))
+ {
+ skip("ROSTESTS-184: Skipping user3232_winetest:msg_paint test_paint_messages because it hangs on WHS-Testbot. Set winetest_interactive to run it anyway.\n");
+ }
+ else
+#endif
test_paint_messages();
test_paintingloop();
cleanup_tests();