diff --git a/rostests/winetests/shell32/shlfolder.c b/rostests/winetests/shell32/shlfolder.c index fb634b45348..6effd43feaf 100644 --- a/rostests/winetests/shell32/shlfolder.c +++ b/rostests/winetests/shell32/shlfolder.c @@ -348,7 +348,7 @@ static void Cleanup(void) RemoveDirectoryA(".\\testdir"); } - +#if 0 /* perform test */ static void test_EnumObjects(IShellFolder *iFolder) { @@ -434,6 +434,7 @@ static void test_EnumObjects(IShellFolder *iFolder) for (i=0;i<5;i++) IMalloc_Free(ppM, idlArr[i]); } +#endif static void test_BindToObject(void) { @@ -1335,6 +1336,7 @@ static void test_SHGetPathFromIDList(void) ok(result, "SHGetPathFromIDListW failed\n"); } +#if 0 static void test_EnumObjects_and_CompareIDs(void) { ITEMIDLIST *newPIDL; @@ -1379,6 +1381,7 @@ static void test_EnumObjects_and_CompareIDs(void) IShellFolder_Release(IDesktopFolder); } +#endif /* A simple implementation of an IPropertyBag, which returns fixed values for * 'Target' and 'Attributes' properties. @@ -4588,7 +4591,9 @@ START_TEST(shlfolder) test_ParseDisplayName(); test_SHParseDisplayName(); test_BindToObject(); +#if 0 test_EnumObjects_and_CompareIDs(); +#endif test_GetDisplayName(); test_GetAttributesOf(); test_SHGetPathFromIDList();