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

Alexandre Julliard julliard at winehq.org
Wed May 7 07:04:16 CDT 2008


Module: wine
Branch: master
Commit: 7c051f13941b15bd0a399431e36cae16b8fe092e
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=7c051f13941b15bd0a399431e36cae16b8fe092e

Author: Maarten Lankhorst <m.b.lankhorst at gmail.com>
Date:   Tue May  6 14:14:56 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 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 {




More information about the wine-cvs mailing list