urlmon/tests: Skip some tests on Win9x and WinMe.

This commit is contained in:
Paul Vriens 2008-11-11 10:09:39 +01:00 committed by Alexandre Julliard
parent bf8ca52abf
commit 7a723944b8
1 changed files with 6 additions and 0 deletions

View File

@ -1423,8 +1423,14 @@ static void test_file_protocol(void) {
trace("Testing file protocol...\n");
tested_protocol = FILE_TEST;
SetLastError(0xdeadbeef);
file = CreateFileW(wszIndexHtml, GENERIC_WRITE, 0, NULL, CREATE_ALWAYS,
FILE_ATTRIBUTE_NORMAL, NULL);
if(!file && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
{
win_skip("Detected Win9x or WinMe\n");
return;
}
ok(file != INVALID_HANDLE_VALUE, "CreateFile failed\n");
if(file == INVALID_HANDLE_VALUE)
return;