From 7a723944b88be1de9c42d4e017ab3ec7547fdcaa Mon Sep 17 00:00:00 2001 From: Paul Vriens Date: Tue, 11 Nov 2008 10:09:39 +0100 Subject: [PATCH] urlmon/tests: Skip some tests on Win9x and WinMe. --- dlls/urlmon/tests/protocol.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dlls/urlmon/tests/protocol.c b/dlls/urlmon/tests/protocol.c index 6c933afee67..bdd5a8518e4 100644 --- a/dlls/urlmon/tests/protocol.c +++ b/dlls/urlmon/tests/protocol.c @@ -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; -- 2.11.4.GIT