Module: wine Branch: master Commit: 3c79c2e88ce436a909caea3ad2bd3066d31415e7 URL: http://source.winehq.org/git/wine.git/?a=commit;h=3c79c2e88ce436a909caea3ad2...
Author: Maarten Lankhorst m.b.lankhorst@gmail.com Date: Mon May 5 21:54:41 2008 -0700
winetest: Fix CreateProcess so that debugger tests run without timing out.
---
programs/winetest/main.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/programs/winetest/main.c b/programs/winetest/main.c index 72b7442..c862427 100644 --- a/programs/winetest/main.c +++ b/programs/winetest/main.c @@ -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 {