Commit 806edcc4 authored by James Hawkins's avatar James Hawkins Committed by Alexandre Julliard

kernel32: Fix two failing tests in win95.

parent 39732cf9
...@@ -1180,13 +1180,15 @@ static void test_Console(void) ...@@ -1180,13 +1180,15 @@ static void test_Console(void)
/* Try to set invalid CP */ /* Try to set invalid CP */
SetLastError(0xdeadbeef); SetLastError(0xdeadbeef);
ok(!SetConsoleCP(0), "Shouldn't succeed\n"); ok(!SetConsoleCP(0), "Shouldn't succeed\n");
ok(GetLastError()==ERROR_INVALID_PARAMETER, ok(GetLastError()==ERROR_INVALID_PARAMETER ||
broken(GetLastError() == ERROR_CALL_NOT_IMPLEMENTED), /* win95 */
"GetLastError: expecting %u got %u\n", "GetLastError: expecting %u got %u\n",
ERROR_INVALID_PARAMETER, GetLastError()); ERROR_INVALID_PARAMETER, GetLastError());
SetLastError(0xdeadbeef); SetLastError(0xdeadbeef);
ok(!SetConsoleOutputCP(0), "Shouldn't succeed\n"); ok(!SetConsoleOutputCP(0), "Shouldn't succeed\n");
ok(GetLastError()==ERROR_INVALID_PARAMETER, ok(GetLastError()==ERROR_INVALID_PARAMETER ||
broken(GetLastError() == ERROR_CALL_NOT_IMPLEMENTED), /* win95 */
"GetLastError: expecting %u got %u\n", "GetLastError: expecting %u got %u\n",
ERROR_INVALID_PARAMETER, GetLastError()); ERROR_INVALID_PARAMETER, GetLastError());
......
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