[WININET_WINETEST][URLMON_WINETEST][SHELL32_APITEST] Skip some tests

Due to hangs on test machines
ROSTESTS-357 ROSTESTS-358 CORE-17057
This commit is contained in:
Victor Perevertkin 2020-06-08 03:43:43 +03:00
parent 1761bedb82
commit d424a0e088
No known key found for this signature in database
GPG key ID: C750B7222E9C7830
4 changed files with 20 additions and 1 deletions

View file

@ -383,6 +383,12 @@ static void DoTestEntry(const TEST_ENTRY *pEntry)
START_TEST(DragDrop)
{
if (!winetest_interactive)
{
skip("Skipping the test due to crash. CORE-17057\n");
return;
}
HRESULT hr = CoInitializeEx(NULL, COINIT_APARTMENTTHREADED);
ok_int(SUCCEEDED(hr), TRUE);

View file

@ -40,7 +40,7 @@ const struct test winetest_testlist[] =
{ "CShellDesktop", func_CShellDesktop },
{ "CShellLink", func_CShellLink },
{ "CUserNotification", func_CUserNotification },
// { "DragDrop", func_DragDrop }, disabled due to CORE-17057
{ "DragDrop", func_DragDrop },
{ "ExtractIconEx", func_ExtractIconEx },
{ "IShellFolderViewCB", func_IShellFolderViewCB },
{ "menu", func_menu },

View file

@ -3924,6 +3924,12 @@ START_TEST(url)
{
HMODULE hurlmon;
if (!winetest_interactive)
{
win_skip("Skipping urlmon:url due to hang ROSTESTS-358\n");
return;
}
hurlmon = GetModuleHandleA("urlmon.dll");
pCreateAsyncBindCtxEx = (void*) GetProcAddress(hurlmon, "CreateAsyncBindCtxEx");

View file

@ -7801,6 +7801,13 @@ static void test_concurrent_header_access(void)
START_TEST(http)
{
HMODULE hdll;
if (!winetest_interactive)
{
win_skip("Skipping wininet:http due to hang ROSTESTS-357\n");
return;
}
hdll = GetModuleHandleA("wininet.dll");
if(!GetProcAddress(hdll, "InternetGetCookieExW")) {