mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 12:23:25 +00:00
[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:
@@ -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);
|
||||
|
||||
|
||||
@@ -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 },
|
||||
|
||||
@@ -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");
|
||||
|
||||
|
||||
@@ -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")) {
|
||||
|
||||
Reference in New Issue
Block a user