mirror of
https://github.com/reactos/reactos.git
synced 2025-01-12 01:00:06 +00:00
[USER32_WINETEST]
skip TrackPopupMenu, which leads to a hang on reactos See issue #5405 for more details. svn path=/trunk/; revision=47259
This commit is contained in:
parent
ba5f9da4a0
commit
d30bfb803d
1 changed files with 4 additions and 0 deletions
|
@ -3002,6 +3002,9 @@ static void test_menu_cancelmode(void)
|
|||
ok( g_got_enteridle == 0, "received %d WM_ENTERIDLE messages, none expected\n", g_got_enteridle);
|
||||
}
|
||||
ok( g_got_enteridle < 2, "received %d WM_ENTERIDLE messages, should be less than 2\n", g_got_enteridle);
|
||||
|
||||
skip("skipping TrackPopupMenu, that hangs on reactos\n");
|
||||
#if 0
|
||||
/* menu owner is child window */
|
||||
g_hwndtosend = hwndchild;
|
||||
ret = TrackPopupMenu( menu, 0x100, 100,100, 0, hwndchild, NULL);
|
||||
|
@ -3014,6 +3017,7 @@ static void test_menu_cancelmode(void)
|
|||
g_hwndtosend = hwnd;
|
||||
ret = TrackPopupMenu( menu, 0x100, 100,100, 0, hwndchild, NULL);
|
||||
ok( g_got_enteridle == 2, "received %d WM_ENTERIDLE messages, should be 2\n", g_got_enteridle);
|
||||
#endif
|
||||
/* cleanup */
|
||||
DestroyMenu( menu);
|
||||
DestroyWindow( hwndchild);
|
||||
|
|
Loading…
Reference in a new issue