Commit ebfd1d3d authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

user32/tests: Removed a unreliable test.

parent c296e7de
......@@ -1759,10 +1759,8 @@ static void test_handles( HWND hwnd )
h = SetClipboardData( 0xdeadbeef, hfixed );
ok( h == hfixed, "got %p\n", h );
ok( is_fixed( h ), "expected fixed mem %p\n", h );
#ifndef _WIN64
/* testing if hfixed2 is freed triggers an exception on Win64 */
ok( is_freed( hfixed2 ) || broken( !is_freed( hfixed2 )) /* < Vista */, "expected freed mem %p\n", hfixed2 );
#endif
if (0) /* this test is unreliable / crashes */
ok( is_freed( hfixed2 ), "expected freed mem %p\n", hfixed2 );
r = CloseClipboard();
ok( r, "gle %d\n", GetLastError() );
......
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