[llvm-commits] CVS: llvm/utils/NewNightlyTest.pl

Patrick Jenkins pjenkins at apple.com
Tue Jul 18 14:22:05 PDT 2006



Changes in directory llvm/utils:

NewNightlyTest.pl updated: 1.14 -> 1.15
---
Log message:

yet another change to get the correct gcc version for the nightly test results.


---
Diffs of the changes:  (+4 -3)

 NewNightlyTest.pl |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)


Index: llvm/utils/NewNightlyTest.pl
diff -u llvm/utils/NewNightlyTest.pl:1.14 llvm/utils/NewNightlyTest.pl:1.15
--- llvm/utils/NewNightlyTest.pl:1.14	Tue Jul 18 12:21:30 2006
+++ llvm/utils/NewNightlyTest.pl	Tue Jul 18 16:21:53 2006
@@ -961,15 +961,16 @@
 @DEJAGNULOG_FULL = ReadFile "$DejagnuTestsLog";
 $dejagnulog_full = join("\n", @DEJAGNULOG_FULL);
 
+my $gcc_version_long="";
 if($GCCPATH ne ""){
-  my $gcc_version_long = `$GCCPATH/gcc --version`;
+  $gcc_version_long = `$GCCPATH/gcc --version`;
   print "$GCCPATH/gcc --version\n";
 }
 else{
-  my $gcc_version_long = `gcc --version`;
+  $gcc_version_long = `gcc --version`;
   print "gcc --version\n";
 }
- at GCC_VERSION = split "\n", $gcc_version_long;
+ at GCC_VERSION = split '\n', $gcc_version_long;
 my $gcc_version = $GCC_VERSION[0];
 
 ##############################################################






More information about the llvm-commits mailing list