From: Patrick Jenkins Date: Sat, 22 Jul 2006 00:00:08 +0000 (+0000) Subject: added status message during nightly test X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=fcf207b3f70670a341cb089debd3b1059a5b412e;p=oota-llvm.git added status message during nightly test git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29263 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/NewNightlyTest.pl b/utils/NewNightlyTest.pl index eb4fc50d1c8..c61bafacf9b 100755 --- a/utils/NewNightlyTest.pl +++ b/utils/NewNightlyTest.pl @@ -584,8 +584,7 @@ my $UserUpdateList = join "\n", sort keys %UsersUpdated; ############################################################## if (!$NOCHECKOUT && !$NOBUILD) { my $EXTRAFLAGS = "--enable-spec --with-objroot=."; - if ( $VERBOSE ) - { + if ( $VERBOSE ){ print "CONFIGURE STAGE:\n"; print "(time -p $NICE ./configure $CONFIGUREARGS $EXTRAFLAGS) > $BuildLog 2>&1\n"; } @@ -614,6 +613,9 @@ if (!$NOCHECKOUT && !$NOBUILD) { my $a_file_sizes=""; my $o_file_sizes=""; if(!$BuildError){ + if ( $VERBOSE ){ + print "Organizing size of .o and .a files\n"; + } ChangeDir( "$BuildDir", "Build Directory" ); $afiles = `find . -iname '*.a' -ls`; $ofiles = `find . -iname '*.o' -ls`;