From c81b5bdad8b9742cc0b52626f6230563734c5a07 Mon Sep 17 00:00:00 2001 From: Maarten Lankhorst Date: Tue, 6 May 2008 14:14:56 -0700 Subject: [PATCH] winetest: Fix CreateProcess so that debugger tests run without timing out, try 2 Oops, I accidentally sent in a wrong fix, this is the right one --- 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 c862427..79f7e79 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, CREATE_NEW_PROCESS_GROUP, + if (!CreateProcessA (NULL, cmd, NULL, NULL, TRUE, CREATE_DEFAULT_ERROR_MODE, NULL, tempdir, &si, &pi)) { status = -2; } else { -- 1.5.4.1