Commit 410a9832 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

shell32/tests: Mark win10 failure as broken.

parent 3cb027c7
......@@ -1588,7 +1588,8 @@ static void test_FolderShortcut(void) {
if (hr != S_OK) return;
hr = IShellFolder_GetDisplayNameOf(pShellFolder, NULL, SHGDN_FORPARSING, &strret);
ok(hr == S_OK, "IShellFolder_GetDisplayNameOf(NULL) failed! hr = %08x\n", hr);
ok(hr == S_OK || broken(hr == E_INVALIDARG) /* win10 */,
"IShellFolder_GetDisplayNameOf(NULL) failed! hr = %08x\n", hr);
if (hr != S_OK) {
IShellFolder_Release(pShellFolder);
return;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment