Commit 7911424f authored by Paul Vriens's avatar Paul Vriens Committed by Alexandre Julliard

gdi32/tests: Skip a test as it crashes on Vista.

parent e9ccee05
...@@ -91,9 +91,13 @@ static void test_GetICMProfileW( HDC dc ) ...@@ -91,9 +91,13 @@ static void test_GetICMProfileW( HDC dc )
ret = GetICMProfileW( dc, NULL, NULL ); ret = GetICMProfileW( dc, NULL, NULL );
ok( !ret, "GetICMProfileW succeeded\n" ); ok( !ret, "GetICMProfileW succeeded\n" );
size = MAX_PATH; if (0)
ret = GetICMProfileW( dc, &size, NULL ); {
ok( ret, "GetICMProfileW failed %d\n", GetLastError() ); /* Vista crashes */
size = MAX_PATH;
ret = GetICMProfileW( dc, &size, NULL );
ok( ret, "GetICMProfileW failed %d\n", GetLastError() );
}
ret = GetICMProfileW( dc, NULL, filename ); ret = GetICMProfileW( dc, NULL, filename );
ok( !ret, "GetICMProfileW succeeded\n" ); ok( !ret, "GetICMProfileW succeeded\n" );
......
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