[3/3] testbot/build: Time the Reconfig.pl operations.

Francois Gouget fgouget at codeweavers.com
Tue Oct 9 18:15:24 CDT 2012


---
 testbot/bin/Reconfig.pl |   12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/testbot/bin/Reconfig.pl b/testbot/bin/Reconfig.pl
index 3b60abd..f049e8a 100755
--- a/testbot/bin/Reconfig.pl
+++ b/testbot/bin/Reconfig.pl
@@ -80,9 +80,9 @@ sub BuildNative
   mkdir "$DataDir/build-native" if (! -d "$DataDir/build-native");
   system("( cd $DataDir/build-native && set -x && " .
          "  rm -rf * && " .
-         "  ../wine-git/configure --enable-win64 --without-x --without-freetype && " .
-         "  make -j$ncpus depend && " .
-         "  make -j$ncpus __tooldeps__ " .
+         "  time ../wine-git/configure --enable-win64 --without-x --without-freetype && " .
+         "  time make -j$ncpus depend && " .
+         "  time make -j$ncpus __tooldeps__ " .
          ") >>$LogDir/Reconfig.log 2>&1");
 
   if ($? != 0)
@@ -102,9 +102,9 @@ sub BuildCross
   mkdir "$DataDir/build-mingw$Bits" if (! -d "$DataDir/build-mingw$Bits");
   system("( cd $DataDir/build-mingw$Bits && set -x && " .
          "  rm -rf * && " .
-         "  ../wine-git/configure --host=$Host --with-wine-tools=../build-native --without-x --without-freetype && " .
-         "  make -j$ncpus depend  && " .
-         "  make -j$ncpus programs/winetest " .
+         "  time ../wine-git/configure --host=$Host --with-wine-tools=../build-native --without-x --without-freetype && " .
+         "  time make -j$ncpus depend  && " .
+         "  time make -j$ncpus programs/winetest " .
          ") >>$LogDir/Reconfig.log 2>&1");
   if ($? != 0)
   {
-- 
1.7.10.4



More information about the wine-patches mailing list