winetest: Fix CreateProcess so that debugger tests run without timing out.

oldstable
Maarten Lankhorst 2008-05-05 21:54:41 -07:00 committed by Alexandre Julliard
parent a61ef431b8
commit 3c79c2e88c
1 changed files with 1 additions and 1 deletions

View File

@ -325,7 +325,7 @@ run_ex (char *cmd, const char *out, const char *tempdir, DWORD ms)
close (fd);
}
if (!CreateProcessA (NULL, cmd, NULL, NULL, TRUE, 0,
if (!CreateProcessA (NULL, cmd, NULL, NULL, TRUE, CREATE_NEW_PROCESS_GROUP,
NULL, tempdir, &si, &pi)) {
status = -2;
} else {