Author: tfaber
Date: Sun Jul 19 17:16:38 2015
New Revision: 68441
URL:
http://svn.reactos.org/svn/reactos?rev=68441&view=rev
Log:
[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
Modified:
trunk/rostests/winetests/ole32/dragdrop.c
Modified: trunk/rostests/winetests/ole32/dragdrop.c
URL:
http://svn.reactos.org/svn/reactos/trunk/rostests/winetests/ole32/dragdrop.…
==============================================================================
--- trunk/rostests/winetests/ole32/dragdrop.c [iso-8859-1] (original)
+++ trunk/rostests/winetests/ole32/dragdrop.c [iso-8859-1] Sun Jul 19 17:16:38 2015
@@ -574,5 +574,13 @@
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();
}