winetest: Fix CreateProcess so that debugger tests run without timing out.
This commit is contained in:
parent
a61ef431b8
commit
3c79c2e88c
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue