[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
This commit is contained in:
Thomas Faber 2015-07-19 17:16:38 +00:00
parent ab5f90fbb5
commit f51b244380

View file

@ -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();
}