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/11/02 15:01:09 UTC

svn commit: r591332 - /incubator/stdcxx/trunk/etc/config/windows/build.wsf

Author: faridz
Date: Fri Nov  2 07:01:09 2007
New Revision: 591332

URL: http://svn.apache.org/viewvc?rev=591332&view=rev
Log:
2007-11-02 Farid Zaripov <fa...@epam.com>

	Merged r591331 from branches/4.2.x
	* build.wsf (build): The order of running examples, tests
	and locales on Windows arranged to the order of running
	on UNIX (locales, tests, examples).

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

Modified: incubator/stdcxx/trunk/etc/config/windows/build.wsf
URL: http://svn.apache.org/viewvc/incubator/stdcxx/trunk/etc/config/windows/build.wsf?rev=591332&r1=591331&r2=591332&view=diff
==============================================================================
--- incubator/stdcxx/trunk/etc/config/windows/build.wsf (original)
+++ incubator/stdcxx/trunk/etc/config/windows/build.wsf Fri Nov  2 07:01:09 2007
@@ -439,8 +439,11 @@
         if (buildOnly)
            break;
 
-        TimeEcho("Running examples...\n");
-        BuildProject(solutionBuild, ".stdcxx_runexamples");
+        if (0 >= resUtils)
+        {
+            TimeEcho("Running locales tests...");
+            BuildProject(solutionBuild, ".stdcxx_testlocales");
+        }   
 
         if (runTests)
         {
@@ -448,14 +451,8 @@
             BuildProject(solutionBuild, ".stdcxx_runtests");
         }
         
-        if (0 < resUtils)
-        {
-            retCode = 6;
-            break;
-        }   
-
-        TimeEcho("Running locales tests...");
-        BuildProject(solutionBuild, ".stdcxx_testlocales");
+        TimeEcho("Running examples...\n");
+        BuildProject(solutionBuild, ".stdcxx_runexamples");
     }
     while (false);