Francois Gouget : shell32/tests: Disable a test that crashes on Windows 8.
Module: wine Branch: master Commit: 0a08c185180efb38150e4683a70d43885c68e1c1 URL: http://source.winehq.org/git/wine.git/?a=commit;h=0a08c185180efb38150e4683a7... Author: Francois Gouget <fgouget(a)free.fr> Date: Fri Nov 1 10:35:08 2013 +0100 shell32/tests: Disable a test that crashes on Windows 8. --- dlls/shell32/tests/shlfolder.c | 11 +++++++---- 1 files changed, 7 insertions(+), 4 deletions(-) diff --git a/dlls/shell32/tests/shlfolder.c b/dlls/shell32/tests/shlfolder.c index af34b8e..0992924 100644 --- a/dlls/shell32/tests/shlfolder.c +++ b/dlls/shell32/tests/shlfolder.c @@ -232,10 +232,13 @@ static void test_ParseDisplayName(void) /* Tests crash on W2K and below (SHCreateShellItem available as of XP) */ if (pSHCreateShellItem) { - /* null name and pidl */ - hr = IShellFolder_ParseDisplayName(IDesktopFolder, - NULL, NULL, NULL, NULL, NULL, 0); - ok(hr == E_INVALIDARG, "returned %08x, expected E_INVALIDARG\n", hr); + if (0) + { + /* null name and pidl, also crashes on Windows 8 */ + hr = IShellFolder_ParseDisplayName(IDesktopFolder, NULL, NULL, + NULL, NULL, NULL, 0); + ok(hr == E_INVALIDARG, "returned %08x, expected E_INVALIDARG\n", hr); + } /* null name */ newPIDL = (ITEMIDLIST*)0xdeadbeef;
participants (1)
-
Alexandre Julliard