mirror of
https://github.com/reactos/reactos.git
synced 2025-01-03 21:09:19 +00:00
[MSCMS_WINETEST] Sync with Wine Staging 1.9.4. CORE-10912
svn path=/trunk/; revision=70888
This commit is contained in:
parent
b65776bc1b
commit
9637fe24af
1 changed files with 4 additions and 12 deletions
|
@ -675,10 +675,8 @@ static void test_EnumColorProfilesA( char *standardprofile )
|
|||
ok( !ret, "EnumColorProfilesA() succeeded (%d)\n", GetLastError() );
|
||||
|
||||
ret = pEnumColorProfilesA( NULL, &record, buffer, &size, &number );
|
||||
if (have_color_profile)
|
||||
todo_wine_if (!have_color_profile)
|
||||
ok( ret, "EnumColorProfilesA() failed (%d)\n", GetLastError() );
|
||||
else
|
||||
todo_wine ok( ret, "EnumColorProfilesA() failed (%d)\n", GetLastError() );
|
||||
|
||||
size = 0;
|
||||
|
||||
|
@ -689,10 +687,8 @@ static void test_EnumColorProfilesA( char *standardprofile )
|
|||
|
||||
size = total;
|
||||
ret = pEnumColorProfilesA( NULL, &record, buffer, &size, &number );
|
||||
if (have_color_profile)
|
||||
todo_wine_if (!have_color_profile)
|
||||
ok( ret, "EnumColorProfilesA() failed (%d)\n", GetLastError() );
|
||||
else
|
||||
todo_wine ok( ret, "EnumColorProfilesA() failed (%d)\n", GetLastError() );
|
||||
|
||||
HeapFree( GetProcessHeap(), 0, buffer );
|
||||
}
|
||||
|
@ -729,10 +725,8 @@ static void test_EnumColorProfilesW( WCHAR *standardprofileW )
|
|||
ok( !ret, "EnumColorProfilesW() succeeded (%d)\n", GetLastError() );
|
||||
|
||||
ret = pEnumColorProfilesW( NULL, &record, buffer, &size, &number );
|
||||
if (have_color_profile)
|
||||
todo_wine_if (!have_color_profile)
|
||||
ok( ret, "EnumColorProfilesW() failed (%d)\n", GetLastError() );
|
||||
else
|
||||
todo_wine ok( ret, "EnumColorProfilesW() failed (%d)\n", GetLastError() );
|
||||
|
||||
size = 0;
|
||||
ret = pEnumColorProfilesW( NULL, &record, buffer, &size, &number );
|
||||
|
@ -742,10 +736,8 @@ static void test_EnumColorProfilesW( WCHAR *standardprofileW )
|
|||
|
||||
size = total;
|
||||
ret = pEnumColorProfilesW( NULL, &record, buffer, &size, &number );
|
||||
if (have_color_profile)
|
||||
todo_wine_if (!have_color_profile)
|
||||
ok( ret, "EnumColorProfilesW() failed (%d)\n", GetLastError() );
|
||||
else
|
||||
todo_wine ok( ret, "EnumColorProfilesW() failed (%d)\n", GetLastError() );
|
||||
|
||||
HeapFree( GetProcessHeap(), 0, buffer );
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue