diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-10-19 13:20:00 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-10-19 13:20:00 +0000 |
commit | 47d021bc255cdfbf511789b77973939a8ab38bad (patch) | |
tree | 04b0783c3eaa2cd6cc8ebc17804537fc48d6723d /llvm/utils/NewNightlyTest.pl | |
parent | 070314ef265d4ee48c633a6d87125e19a165fd81 (diff) | |
download | bcm5719-llvm-47d021bc255cdfbf511789b77973939a8ab38bad.tar.gz bcm5719-llvm-47d021bc255cdfbf511789b77973939a8ab38bad.zip |
NNT: Remove .{o,a} size info, this is better tracked elsewhere.
llvm-svn: 84488
Diffstat (limited to 'llvm/utils/NewNightlyTest.pl')
-rwxr-xr-x | llvm/utils/NewNightlyTest.pl | 29 |
1 files changed, 2 insertions, 27 deletions
diff --git a/llvm/utils/NewNightlyTest.pl b/llvm/utils/NewNightlyTest.pl index c8be6ecf50f..0be06c8ea28 100755 --- a/llvm/utils/NewNightlyTest.pl +++ b/llvm/utils/NewNightlyTest.pl @@ -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 ); |