aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Jenkins <pjenkins@apple.com>2006-07-07 21:40:34 +0000
committerPatrick Jenkins <pjenkins@apple.com>2006-07-07 21:40:34 +0000
commit4c4e3560373f9caf9e297deee87d79eea88e8094 (patch)
treecf6d9b5a88deb7fc43f578629cd204891c30f259
parent42f75a926ab4b55f97da010f2ac05d2bc97a6dbf (diff)
Fixed a variable naming issue for the External Program Results table. Also fixed an issue with printing the sent data to a sentdata.txt
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29073 91177308-0d34-0410-b5e6-96231b3b80d8
-rwxr-xr-xutils/NewNightlyTest.pl18
1 files changed, 3 insertions, 15 deletions
diff --git a/utils/NewNightlyTest.pl b/utils/NewNightlyTest.pl
index 10a8810784..f43d97a3c5 100755
--- a/utils/NewNightlyTest.pl
+++ b/utils/NewNightlyTest.pl
@@ -161,18 +161,6 @@ while (scalar(@ARGV) and ($_ = $ARGV[0], /^[-+]/)) {
if (/^-noexternals$/) { $NOEXTERNALS = 1; next; }
if (/^-nodejagnu$/) { $NODEJAGNU = 1; next; }
if (/^-nobuild$/) { $NOBUILD = 1; next; }
- if (/^-spec2000path$/) {
- $LLVMTESTCONFIGARGS .= " --enable-spec2000=$ARGV[0]"; shift; next;
- } else{ $LLVMTESTCONFIGARGS=""; }
- if (/^-spec95path$/) {
- $LLVMTESTCONFIGARGS .= " --enable-spec95=$ARGV[0]"; shift; next;
- }
- if (/^-povraypath$/) {
- $LLVMTESTCONFIGARGS .= " --enable-povray=$ARGV[0]"; shift; next;
- }
- if (/^-namdpath$/) {
- $LLVMTESTCONFIGARGS .= " --enable-namd=$ARGV[0]"; shift; next;
- }
print "Unknown option: $_ : ignoring!\n";
}
@@ -440,11 +428,11 @@ sub SendData{
close(SOCK);
my $sentdata="";
- foreach $x(keys(%hash_of_data)){
+ foreach $x (keys (%$variables)){
$sentdata.= "$x => $hash_of_data{$x}\n";
}
WriteFile "$Prefix-sentdata.txt", $sentdata;
-
+
return $result;
}
@@ -1002,7 +990,7 @@ my %hash_of_data = ('machine_data' => $machine_data,
'buildstatus' => $BuildStatus,
'singlesource_programstable' => $SingleSourceProgramsTable,
'multisource_programstable' => $MultiSourceProgramsTable,
- 'externalsource_programstable' => $ExternalSourceProgramsTable,
+ 'externalsource_programstable' => $ExternalProgramsTable,
'llcbeta_options' => $multisource_llcbeta_options,
'warnings_removed' => $WarningsRemoved,
'warnings_added' => $WarningsAdded,