Commit 84266fc6 authored by Paul Vriens's avatar Paul Vriens Committed by Alexandre Julliard

gdi32/tests: Skip some failing tests on NT4.

parent c50d922e
......@@ -130,6 +130,15 @@ static void test_GetICMProfileW( HDC dc )
static void test_SetICMMode( HDC dc )
{
INT ret, knob, save;
BOOL impl;
SetLastError( 0xdeadbeef );
impl = GetICMProfileA( NULL, NULL, NULL );
if ( !impl && ( GetLastError() == ERROR_CALL_NOT_IMPLEMENTED ) )
{
skip( "On NT4 where SetICMMode is not implemented but this is not advertised\n" );
return;
}
SetLastError( 0xdeadbeef );
ret = SetICMMode( NULL, 0 );
......
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