kernel32/tests: If the registry happens to be set up right, check that winedbg does not mess up the crashed process exit code (unfortunately it does).

This commit is contained in:
Francois Gouget 2007-08-29 21:42:55 +02:00 committed by Alexandre Julliard
parent a2a5118362
commit a86c035d7f
1 changed files with 36 additions and 3 deletions

View File

@ -90,10 +90,9 @@ static DWORD get_logged_pid(const char* logfile)
static void doCrash(int argc, char** argv)
{
char* p;
const char* logfile;
logfile=(argc >= 4 ? argv[3] : NULL);
log_pid(logfile, GetCurrentProcessId());
if (argc >= 4)
log_pid(argv[3], GetCurrentProcessId());
/* Just crash */
trace("child: crashing...\n");
@ -188,6 +187,36 @@ static void crash_and_debug(HKEY hkey, const char* argv0, const char* debugger)
assert(DeleteFileA(childlog) != 0);
}
static void crash_and_winedbg(HKEY hkey, const char* argv0)
{
DWORD ret;
char* cmd;
PROCESS_INFORMATION info;
STARTUPINFOA startup;
DWORD exit_code;
ret=RegSetValueExA(hkey, "auto", 0, REG_SZ, (BYTE*)"1", 2);
ok(ret == ERROR_SUCCESS, "unable to set AeDebug/auto: ret=%d\n", ret);
cmd=HeapAlloc(GetProcessHeap(), 0, strlen(argv0)+15+1);
sprintf(cmd, "%s debugger crash", argv0);
memset(&startup, 0, sizeof(startup));
startup.cb = sizeof(startup);
startup.dwFlags = STARTF_USESHOWWINDOW;
startup.wShowWindow = SW_SHOWNORMAL;
ret=CreateProcessA(NULL, cmd, NULL, NULL, FALSE, 0, NULL, NULL, &startup, &info);
ok(ret, "CreateProcess: err=%d\n", GetLastError());
HeapFree(GetProcessHeap(), 0, cmd);
CloseHandle(info.hThread);
trace("waiting for child exit...\n");
ok(WaitForSingleObject(info.hProcess, 60000) == WAIT_OBJECT_0, "Timed out waiting for the child to crash\n");
ok(GetExitCodeProcess(info.hProcess, &exit_code), "GetExitCodeProcess failed: err=%d\n", GetLastError());
todo_wine ok(exit_code == STATUS_ACCESS_VIOLATION, "exit code = %08x\n", exit_code);
CloseHandle(info.hProcess);
}
static void test_ExitCode(void)
{
static const char* AeDebug="Software\\Microsoft\\Windows NT\\CurrentVersion\\AeDebug";
@ -239,6 +268,10 @@ static void test_ExitCode(void)
return;
}
if (debugger_val && debugger_type == REG_SZ &&
strstr((char*)debugger_val, "winedbg --auto"))
crash_and_winedbg(hkey, test_exe);
crash_and_debug(hkey, test_exe, "dbgevent");
crash_and_debug(hkey, test_exe, "dbgnoevent");