user32/tests: Put some menu items in the test_menu_trackagain menu.

oldstable
Vincent Povirk 2014-02-17 15:45:43 -06:00 committed by Alexandre Julliard
parent b8d80364c3
commit 0dc1886634
1 changed files with 6 additions and 1 deletions

View File

@ -3251,8 +3251,13 @@ static void test_menu_trackagain(void)
g_hmenu = CreatePopupMenu();
ok(g_hmenu != NULL, "CreateMenu failed with error %d\n", GetLastError());
ret = AppendMenuA(g_hmenu, MF_STRING , 100, "item 1");
ok(ret, "AppendMenu failed.\n");
ret = AppendMenuA(g_hmenu, MF_STRING , 101, "item 2");
ok(ret, "AppendMenu failed.\n");
ret = TrackPopupMenu( g_hmenu, 0, 100, 100, 0, hwnd, NULL);
todo_wine ok(ret == FALSE, "got %d\n", ret);
ok(ret == TRUE, "got %d\n", ret);
DestroyMenu(g_hmenu);
DestroyWindow(hwnd);