From 1a5b34df4a88760f6fb23faf0bd2c0521f751b69 Mon Sep 17 00:00:00 2001 From: Thomas Faber Date: Sun, 26 Jul 2015 08:41:13 +0000 Subject: [PATCH] [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 svn path=/trunk/; revision=68575 --- rostests/winetests/user32/msg.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/rostests/winetests/user32/msg.c b/rostests/winetests/user32/msg.c index 3d4899921cc..37f7f587165 100755 --- a/rostests/winetests/user32/msg.c +++ b/rostests/winetests/user32/msg.c @@ -15035,6 +15035,14 @@ START_TEST(msg_paint) { 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(); -- 2.17.1