summaryrefslogtreecommitdiff
path: root/utils/NewNightlyTest.pl
diff options
context:
space:
mode:
authorJim Laskey <jlaskey@mac.com>2006-09-28 18:45:11 +0000
committerJim Laskey <jlaskey@mac.com>2006-09-28 18:45:11 +0000
commitba9f0431f0e65b5d198af50438dd71a19f86584b (patch)
tree15f444f6ddb5165234970bf0b5b0a6e0ef2e9394 /utils/NewNightlyTest.pl
parent27b8ba088bdfbdbe15a2f8ac68f429516716fd8a (diff)
downloadllvm-ba9f0431f0e65b5d198af50438dd71a19f86584b.tar.gz
llvm-ba9f0431f0e65b5d198af50438dd71a19f86584b.tar.bz2
llvm-ba9f0431f0e65b5d198af50438dd71a19f86584b.tar.xz
Fix search file for -release.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30647 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/NewNightlyTest.pl')
-rwxr-xr-xutils/NewNightlyTest.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/NewNightlyTest.pl b/utils/NewNightlyTest.pl
index 6101b0ab79..6032f71c70 100755
--- a/utils/NewNightlyTest.pl
+++ b/utils/NewNightlyTest.pl
@@ -660,7 +660,7 @@ if (!$BuildError) {
$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 @@ if (!$BuildError) {
$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 {