Wine and NT4 returns E_FAIL on failure.

This commit is contained in:
Saulius Krasuckas 2005-08-08 11:04:30 +00:00 committed by Alexandre Julliard
parent a30b6a91a1
commit 843314ed9a
1 changed files with 2 additions and 6 deletions

View File

@ -78,12 +78,8 @@ static void test_ParseDisplayName(void)
MultiByteToWideChar(CP_ACP, 0, cNonExistDir1A, -1, cTestDirW, MAX_PATH); MultiByteToWideChar(CP_ACP, 0, cNonExistDir1A, -1, cTestDirW, MAX_PATH);
hr = IShellFolder_ParseDisplayName(IDesktopFolder, hr = IShellFolder_ParseDisplayName(IDesktopFolder,
NULL, NULL, cTestDirW, NULL, &newPIDL, 0); NULL, NULL, cTestDirW, NULL, &newPIDL, 0);
/* This call returns HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND) only in Windows. ok((hr == HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND)) || (hr == E_FAIL),
* Should we distinguish between cNonExistDir1A and cNonExistDir2A ? "ParseDisplayName returned %08lx, expected 80070002 or E_FAIL\n", hr);
* Putting test as todo. */
todo_wine
ok(hr == HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND),
"ParseDisplayName returned %08lx, expected 80070002\n", hr);
res = GetFileAttributesA(cNonExistDir2A); res = GetFileAttributesA(cNonExistDir2A);
if(res != INVALID_FILE_ATTRIBUTES) return; if(res != INVALID_FILE_ATTRIBUTES) return;