[llvm-commits] CVS: llvm/utils/NewNightlyTest.pl
Patrick Jenkins
pjenkins at apple.com
Fri Jul 7 10:08:14 PDT 2006
Changes in directory llvm/utils:
NewNightlyTest.pl updated: 1.2 -> 1.3
---
Log message:
Fixed variable naming issue that prevented $Prefix-senddata.txt from having any information
---
Diffs of the changes: (+1 -1)
NewNightlyTest.pl | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/utils/NewNightlyTest.pl
diff -u llvm/utils/NewNightlyTest.pl:1.2 llvm/utils/NewNightlyTest.pl:1.3
--- llvm/utils/NewNightlyTest.pl:1.2 Thu Jul 6 17:32:15 2006
+++ llvm/utils/NewNightlyTest.pl Fri Jul 7 12:08:02 2006
@@ -441,7 +441,7 @@
my $sentdata="";
foreach $x(keys(%hash_of_data)){
- $senddata.= "$x => $hash_of_data{$x}\n";
+ $sentdata.= "$x => $hash_of_data{$x}\n";
}
WriteFile "$Prefix-sentdata.txt", $sentdata;
More information about the llvm-commits
mailing list