File tree Expand file tree Collapse file tree 4 files changed +20
-1
lines changed Expand file tree Collapse file tree 4 files changed +20
-1
lines changed Original file line number Diff line number Diff line change @@ -383,6 +383,12 @@ static void DoTestEntry(const TEST_ENTRY *pEntry)
383
383
384
384
START_TEST (DragDrop)
385
385
{
386
+ if (!winetest_interactive)
387
+ {
388
+ skip (" Skipping the test due to crash. CORE-17057\n " );
389
+ return ;
390
+ }
391
+
386
392
HRESULT hr = CoInitializeEx (NULL , COINIT_APARTMENTTHREADED);
387
393
ok_int (SUCCEEDED (hr), TRUE );
388
394
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ const struct test winetest_testlist[] =
40
40
{ "CShellDesktop" , func_CShellDesktop },
41
41
{ "CShellLink" , func_CShellLink },
42
42
{ "CUserNotification" , func_CUserNotification },
43
- // { "DragDrop", func_DragDrop }, disabled due to CORE-17057
43
+ { "DragDrop" , func_DragDrop },
44
44
{ "ExtractIconEx" , func_ExtractIconEx },
45
45
{ "IShellFolderViewCB" , func_IShellFolderViewCB },
46
46
{ "menu" , func_menu },
Original file line number Diff line number Diff line change @@ -3924,6 +3924,12 @@ START_TEST(url)
3924
3924
{
3925
3925
HMODULE hurlmon ;
3926
3926
3927
+ if (!winetest_interactive )
3928
+ {
3929
+ win_skip ("Skipping urlmon:url due to hang ROSTESTS-358\n" );
3930
+ return ;
3931
+ }
3932
+
3927
3933
hurlmon = GetModuleHandleA ("urlmon.dll" );
3928
3934
pCreateAsyncBindCtxEx = (void * ) GetProcAddress (hurlmon , "CreateAsyncBindCtxEx" );
3929
3935
Original file line number Diff line number Diff line change @@ -7801,6 +7801,13 @@ static void test_concurrent_header_access(void)
7801
7801
START_TEST (http )
7802
7802
{
7803
7803
HMODULE hdll ;
7804
+
7805
+ if (!winetest_interactive )
7806
+ {
7807
+ win_skip ("Skipping wininet:http due to hang ROSTESTS-357\n" );
7808
+ return ;
7809
+ }
7810
+
7804
7811
hdll = GetModuleHandleA ("wininet.dll" );
7805
7812
7806
7813
if (!GetProcAddress (hdll , "InternetGetCookieExW" )) {
You can’t perform that action at this time.
0 commit comments