Commit 0dc18866 authored by Vincent Povirk's avatar Vincent Povirk Committed by Alexandre Julliard

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

parent b8d80364
......@@ -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);
......
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