Author: faridz
Date: Tue Aug 7 07:39:08 2007
New Revision: 563513
URL: http://svn.apache.org/viewvc?view=rev&rev=563513
Log:
2007-08-07 Farid Zaripov <[EMAIL PROTECTED]>
* runall.wsf (runAllExamples): Removed quotes around exec.exe. Lowered
timeout to 100 ms.
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=563513&r1=563512&r2=563513
==============================================================================
--- incubator/stdcxx/trunk/etc/config/windows/runall.wsf (original)
+++ incubator/stdcxx/trunk/etc/config/windows/runall.wsf Tue Aug 7 07:39:08
2007
@@ -243,7 +243,7 @@
++exRun;
}
- var runCmd = "\"" + utlExec + "\"";
+ var runCmd = utlExec;
if (0 < srcDir.length)
runCmd += " -d \"" + srcDir + "\"";
@@ -268,9 +268,10 @@
while (oExec.Status == 0)
{
execOut += oExec.StdOut.ReadAll();
- WScript.Sleep(500);
+ WScript.Sleep(100);
}
+ execOut += oExec.StdOut.ReadAll();
WScript.Echo(execOut);
for (var i = 0; i < arrInfo.length; ++i)