[llvm-commits] CVS: llvm/utils/NewNightlyTest.pl
Patrick Jenkins
pjenkins at apple.com
Fri Jul 7 14:40:46 PDT 2006
Changes in directory llvm/utils:
NewNightlyTest.pl updated: 1.5 -> 1.6
---
Log message:
Fixed a variable naming issue for the External Program Results table. Also fixed an issue with printing the sent data to a sentdata.txt
---
Diffs of the changes: (+3 -15)
NewNightlyTest.pl | 18 +++---------------
1 files changed, 3 insertions(+), 15 deletions(-)
Index: llvm/utils/NewNightlyTest.pl
diff -u llvm/utils/NewNightlyTest.pl:1.5 llvm/utils/NewNightlyTest.pl:1.6
--- llvm/utils/NewNightlyTest.pl:1.5 Fri Jul 7 13:50:51 2006
+++ llvm/utils/NewNightlyTest.pl Fri Jul 7 16:40:34 2006
@@ -161,18 +161,6 @@
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 @@
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 @@
'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,
More information about the llvm-commits
mailing list