Author: faridz
Date: Fri Aug  3 11:11:59 2007
New Revision: 562537

URL: http://svn.apache.org/viewvc?view=rev&rev=562537
Log:
2007-08-03 Farid Zaripov <[EMAIL PROTECTED]>

        * runall.wsf (runAllExamples): Run command using cmd.exe with
        redirecting stderr to stdout to avoid deadlocks.

Modified:
    incubator/stdcxx/trunk/etc/config/windows/runall.wsf

Modified: incubator/stdcxx/trunk/etc/config/windows/runall.wsf
URL: 
http://svn.apache.org/viewvc/incubator/stdcxx/trunk/etc/config/windows/runall.wsf?view=diff&rev=562537&r1=562536&r2=562537
==============================================================================
--- incubator/stdcxx/trunk/etc/config/windows/runall.wsf (original)
+++ incubator/stdcxx/trunk/etc/config/windows/runall.wsf Fri Aug  3 11:11:59 
2007
@@ -255,7 +255,7 @@
 
     var prevDir = WshShell.CurrentDirectory;
     WshShell.CurrentDirectory = exeDir;
-    var oExec = WshShell.Exec(runCmd);
+    var oExec = WshShell.Exec("cmd /c " + runCmd + " 2>&1");
     WshShell.CurrentDirectory = prevDir;
     
     if (!oExec)


Reply via email to