Commit 4732f48f authored by Paul Vriens's avatar Paul Vriens Committed by Alexandre Julliard

shell32/tests: Don't test unimplemented functions.

parent c559895c
...@@ -1271,7 +1271,12 @@ static void test_ITEMIDLIST_format(void) { ...@@ -1271,7 +1271,12 @@ static void test_ITEMIDLIST_format(void) {
ok(bResult, "SHGetSpecialFolderPathW failed! Last error: %u\n", GetLastError()); ok(bResult, "SHGetSpecialFolderPathW failed! Last error: %u\n", GetLastError());
if (!bResult) return; if (!bResult) return;
SetLastError(0xdeadbeef);
bResult = SetCurrentDirectoryW(wszPersonal); bResult = SetCurrentDirectoryW(wszPersonal);
if (!bResult && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED) {
win_skip("Most W-calls are not implemented\n");
return;
}
ok(bResult, "SetCurrentDirectory failed! Last error: %u\n", GetLastError()); ok(bResult, "SetCurrentDirectory failed! Last error: %u\n", GetLastError());
if (!bResult) return; if (!bResult) 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