NNT: Remove .{o,a} size info, this is better tracked elsewhere.
authorDaniel Dunbar <daniel@zuster.org>
Mon, 19 Oct 2009 13:20:00 +0000 (13:20 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Mon, 19 Oct 2009 13:20:00 +0000 (13:20 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84488 91177308-0d34-0410-b5e6-96231b3b80d8

utils/NewNightlyTest.pl

index c8be6ecf50f1632ab7c500fb1b767e2c68d146fe..0be06c8ea28fe17dc0576715ed89a4ee889cae2f 100755 (executable)
@@ -646,31 +646,6 @@ elsif (`grep '^$MAKECMD\[^:]*: .*Error' $BuildLog | wc -l` + 0 ||
 }
 if ($BuildError) { $NODEJAGNU=1; }
 
-my $a_file_sizes="";
-my $o_file_sizes="";
-if (!$BuildError) {
-  print "Organizing size of .o and .a files\n"
-    if ( $VERBOSE );
-  ChangeDir( "$LLVMObjDir", "Build Directory" );
-
-  my @dirs = ('utils', 'lib', 'tools');
-  if($BUILDTYPE eq "release"){
-    push @dirs, 'Release';
-  } elsif($BUILDTYPE eq "release-asserts") {
-    push @dirs, 'Release-Asserts';
-  } else {
-    push @dirs, 'Debug';
-  }
-
-  find(sub {
-      $a_file_sizes .= (-s $_)." $File::Find::name $BUILDTYPE\n" if /\.a$/i;
-      $o_file_sizes .= (-s $_)." $File::Find::name $BUILDTYPE\n" if /\.o$/i;
-    }, @dirs);
-} else {
-  $a_file_sizes="No data due to a bad build.";
-  $o_file_sizes="No data due to a bad build.";
-}
-
 ##############################################################
 #
 # Running dejagnu tests
@@ -931,8 +906,8 @@ my %hash_of_data = (
   'dejagnutests_log' => $dejagnulog_full,
   'starttime' => $starttime,
   'endtime' => $endtime,
-  'o_file_sizes' => $o_file_sizes,
-  'a_file_sizes' => $a_file_sizes,
+  'o_file_sizes' => "",
+  'a_file_sizes' => "",
   'target_triple' => $targetTriple
 );