added status message during nightly test
authorPatrick Jenkins <pjenkins@apple.com>
Sat, 22 Jul 2006 00:00:08 +0000 (00:00 +0000)
committerPatrick Jenkins <pjenkins@apple.com>
Sat, 22 Jul 2006 00:00:08 +0000 (00:00 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29263 91177308-0d34-0410-b5e6-96231b3b80d8

utils/NewNightlyTest.pl

index eb4fc50d1c82ad11817c9807d9cf680a0dab9d53..c61bafacf9b260df97a1ffcf9111eefac288ef0b 100755 (executable)
@@ -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`;