Commit 5dd0c7fa authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

kernel32/tests: VerifyConsoleIoHandle() always returns FALSE on Windows 8 and 10.

parent 542ba85e
......@@ -1319,7 +1319,9 @@ static void test_VerifyConsoleIoHandle( HANDLE handle )
SetLastError(0xdeadbeef);
ret = pVerifyConsoleIoHandle(handle);
error = GetLastError();
ok(ret, "expected VerifyConsoleIoHandle to succeed\n");
ok(ret ||
broken(!ret), /* Windows 8 and 10 */
"expected VerifyConsoleIoHandle to succeed\n");
ok(error == 0xdeadbeef, "wrong GetLastError() %d\n", error);
}
......
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