From f51b24438028240e678dca847bfe568098284986 Mon Sep 17 00:00:00 2001 From: Thomas Faber Date: Sun, 19 Jul 2015 17:16:38 +0000 Subject: [PATCH] [OLE32_WINETEST] - Skip ole32:dragdrop test_DoDragDrop if running on Windows in non-interactive mode. This should allow WHS-Testbot to get a bit further ROSTESTS-182 ONLINE-441 ROSTESTS-181 svn path=/trunk/; revision=68441 --- rostests/winetests/ole32/dragdrop.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/rostests/winetests/ole32/dragdrop.c b/rostests/winetests/ole32/dragdrop.c index 20ed8646385..4b1eeb7beb9 100644 --- a/rostests/winetests/ole32/dragdrop.c +++ b/rostests/winetests/ole32/dragdrop.c @@ -574,5 +574,13 @@ START_TEST(dragdrop) register_dummy_class(); test_Register_Revoke(); +#ifdef __REACTOS__ + if (!winetest_interactive && + !strcmp(winetest_platform, "windows")) + { + skip("ROSTESTS-182: Skipping ole32_winetest:dragdrop test_DoDragDrop because it hangs on WHS-Testbot. Set winetest_interactive to run it anyway.\n"); + return; + } +#endif test_DoDragDrop(); } -- 2.17.1