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

Jim Laskey jlaskey at apple.com
Thu Sep 28 11:45:26 PDT 2006



Changes in directory llvm/utils:

NewNightlyTest.pl updated: 1.61 -> 1.62
---
Log message:

Fix search file for -release.

---
Diffs of the changes:  (+2 -2)

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


Index: llvm/utils/NewNightlyTest.pl
diff -u llvm/utils/NewNightlyTest.pl:1.61 llvm/utils/NewNightlyTest.pl:1.62
--- llvm/utils/NewNightlyTest.pl:1.61	Thu Sep 28 12:49:20 2006
+++ llvm/utils/NewNightlyTest.pl	Thu Sep 28 13:45:11 2006
@@ -660,7 +660,7 @@
   $afiles.= `find lib/ -iname '*.a' -ls`;
   $afiles.= `find tools/ -iname '*.a' -ls`;
   if($BUILDTYPE eq "release"){
-    $afiles.= `find Release/ -iname '*.a' -ls`;
+    $afiles.= `find Release+Asserts/ -iname '*.a' -ls`;
   } elsif($BUILDTYPE eq "release-asserts") {
    $afiles.= `find Release-Asserts/ -iname '*.a' -ls`;
   } else {
@@ -671,7 +671,7 @@
   $ofiles.= `find lib/ -iname '*.o' -ls`;
   $ofiles.= `find tools/ -iname '*.o' -ls`;
   if($BUILDTYPE eq "release"){
-    $ofiles.= `find Release/ -iname '*.o' -ls`;
+    $ofiles.= `find Release+Asserts/ -iname '*.o' -ls`;
   } elsif($BUILDTYPE eq "release-asserts") {
     $ofiles.= `find Release-Asserts/ -iname '*.o' -ls`;
   } else {






More information about the llvm-commits mailing list