kernel32/tests: "none" debugger test needs user interaction.

oldstable
Ge van Geldorp 2009-01-26 12:21:16 +01:00 committed by Alexandre Julliard
parent 76b08f3aa7
commit ee3a743e6c
1 changed files with 7 additions and 1 deletions

View File

@ -364,7 +364,13 @@ static void test_ExitCode(void)
strstr((char*)debugger_val, "winedbg --auto"))
crash_and_winedbg(hkey, test_exe);
crash_and_debug(hkey, test_exe, "dbg,none");
if (winetest_interactive)
/* Since the debugging process never sets the debug event, it isn't recognized
as a valid debugger and, after the debugger exits, Windows will show a dialog box
asking the user what to do */
crash_and_debug(hkey, test_exe, "dbg,none");
else
skip("\"none\" debugger test needs user interaction\n");
crash_and_debug(hkey, test_exe, "dbg,event,order");
crash_and_debug(hkey, test_exe, "dbg,attach,event,code2");
if (pDebugSetProcessKillOnExit)