Commit 824d631c authored by James Hawkins's avatar James Hawkins Committed by Alexandre Julliard

shell32: Fix a test that fails in win2k.

parent c0e89107
...@@ -43,6 +43,7 @@ static void test_parse_for_entire_network(void) ...@@ -43,6 +43,7 @@ static void test_parse_for_entire_network(void)
LPITEMIDLIST pidl; LPITEMIDLIST pidl;
DWORD attr = ~0; DWORD attr = ~0;
DWORD expected_attr; DWORD expected_attr;
DWORD alter_attr;
hr = SHGetDesktopFolder(&psfDesktop); hr = SHGetDesktopFolder(&psfDesktop);
ok(hr == S_OK, "SHGetDesktopFolder failed with error 0x%x\n", hr); ok(hr == S_OK, "SHGetDesktopFolder failed with error 0x%x\n", hr);
...@@ -52,8 +53,11 @@ static void test_parse_for_entire_network(void) ...@@ -52,8 +53,11 @@ static void test_parse_for_entire_network(void)
todo_wine todo_wine
ok(eaten == 0xdeadbeef, "eaten should not have been set to %u\n", eaten); ok(eaten == 0xdeadbeef, "eaten should not have been set to %u\n", eaten);
expected_attr = SFGAO_HASSUBFOLDER|SFGAO_FOLDER|SFGAO_FILESYSANCESTOR|SFGAO_STORAGEANCESTOR|SFGAO_HASPROPSHEET|SFGAO_CANLINK; expected_attr = SFGAO_HASSUBFOLDER|SFGAO_FOLDER|SFGAO_FILESYSANCESTOR|SFGAO_STORAGEANCESTOR|SFGAO_HASPROPSHEET|SFGAO_CANLINK;
alter_attr = (expected_attr & (~SFGAO_STORAGEANCESTOR)) | SFGAO_STREAM;
todo_wine todo_wine
ok(attr == expected_attr, "attr should be 0x%x, not 0x%x\n", expected_attr, attr); ok(attr == expected_attr ||
attr == alter_attr, /* win2k */
"attr should be 0x%x or 0x%x, not 0x%x\n", expected_attr, alter_attr, attr);
ILFree(pidl); ILFree(pidl);
} }
......
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