Commit 30179166 authored by Alexandre Julliard's avatar Alexandre Julliard

user32/tests: Comment out a test that crashes on 64-bit Vista.

parent e16b9f75
......@@ -1667,11 +1667,13 @@ static void test_handles( HWND hwnd )
todo_wine ok( !h, "got %p\n", h );
GlobalFree( empty_moveable );
ptr = HeapAlloc( GetProcessHeap(), 0, 0 );
h = SetClipboardData( format_id2, ptr );
/* some platforms don't allocate a 0-size block correctly */
todo_wine ok( !h || broken( HeapSize( GetProcessHeap(), 0, ptr ) == 1), "got %p\n", h );
HeapFree( GetProcessHeap(), 0, ptr );
if (0) /* crashes on vista64 */
{
ptr = HeapAlloc( GetProcessHeap(), 0, 0 );
h = SetClipboardData( format_id2, ptr );
ok( !h, "got %p\n", h );
HeapFree( GetProcessHeap(), 0, ptr );
}
h = SetClipboardData( format_id2, empty_fixed );
ok( h == empty_fixed, "got %p\n", h );
......
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