You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stdcxx.apache.org by fa...@apache.org on 2007/06/13 16:49:23 UTC

svn commit: r546898 - /incubator/stdcxx/trunk/etc/config/windows/runall.wsf

Author: faridz
Date: Wed Jun 13 07:49:22 2007
New Revision: 546898

URL: http://svn.apache.org/viewvc?view=rev&rev=546898
Log:
2007-06-13 Farid Zaripov <Fa...@epam.com>

	* runall.wsf (parseStatus): Parse OUTPUT status.
	(runAllExamples): Use OUTPUT status as successful result.

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=546898&r1=546897&r2=546898
==============================================================================
--- incubator/stdcxx/trunk/etc/config/windows/runall.wsf (original)
+++ incubator/stdcxx/trunk/etc/config/windows/runall.wsf Wed Jun 13 07:49:22 2007
@@ -298,7 +298,8 @@
         itemInfo.exitCode = parseStatus(itemInfo.name + "." + exeExt, execOut);
         switch (itemInfo.exitCode)
         {
-        case 0:  // OK
+        case  0: // OK
+        case -7: // OUTPUT
             ++exRunSucceeded;
             fileLog.WriteLine(itemInfo.name + " completed successfully, exit code " +
                 itemInfo.exitCode);
@@ -367,6 +368,9 @@
                 break;
             case "  LINK":
                 res = -6;
+                break;
+            case "OUTPUT":
+                res = -7;
                 break;
             default:
                 res = -1;