shell32/tests: Mark win10 failure as broken.

Signed-off-by: André Hentschel <nerv@dawncrow.de>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
André Hentschel 2016-10-02 14:48:55 +02:00 committed by Alexandre Julliard
parent 3cb027c743
commit 410a9832d1
1 changed files with 2 additions and 1 deletions

View File

@ -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;