user32/tests: GetClassInfo doesn't set last error reliably, remove test.

This commit is contained in:
Alexandre Julliard 2009-02-13 13:10:44 +01:00
parent 2d155031cc
commit 96e7da5c55
1 changed files with 1 additions and 4 deletions

View File

@ -554,10 +554,7 @@ static void test_instances(void)
ok( !UnregisterClass( "BUTTON", (HINSTANCE)0x87654321 ), "Unregistered button a second time\n" );
ok( GetLastError() == ERROR_CLASS_DOES_NOT_EXIST, "Wrong error code %d\n", GetLastError() );
ok( !GetClassInfo( 0, "BUTTON", &wc ), "Button still exists\n" );
ok( GetLastError() == ERROR_CLASS_DOES_NOT_EXIST ||
GetLastError() == ERROR_INVALID_PARAMETER || /* W2K3 */
GetLastError() == ERROR_SUCCESS /* Vista */,
"Wrong error code %d\n", GetLastError() );
/* last error not set reliably */
/* we can change the instance of a system class */
check_instance( "EDIT", (HINSTANCE)0xdeadbeef, (HINSTANCE)0xdeadbeef, user32 );