Module: tools Branch: master Commit: cbb2ff89b7b0a17dfd53a47a8334b222d4c343cf URL: http://source.winehq.org/git/tools.git/?a=commit;h=cbb2ff89b7b0a17dfd53a47a8...
Author: Francois Gouget fgouget@codeweavers.com Date: Wed Oct 10 01:15:24 2012 +0200
testbot/build: Time the Reconfig.pl operations.
---
testbot/bin/Reconfig.pl | 12 ++++++------ 1 files 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) {