projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c281b0d
)
Fixed a stupid error where changedir returned false upon success.
author
Patrick Jenkins
<pjenkins@apple.com>
Thu, 27 Jul 2006 19:22:06 +0000
(19:22 +0000)
committer
Patrick Jenkins
<pjenkins@apple.com>
Thu, 27 Jul 2006 19:22:06 +0000
(19:22 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29357
91177308
-0d34-0410-b5e6-
96231b3b80d8
utils/NewNightlyTest.pl
patch
|
blob
|
history
diff --git
a/utils/NewNightlyTest.pl
b/utils/NewNightlyTest.pl
index 302009124dd48094281da1766a33202942f24138..0a604d3f2ca7f8e2be9c2050dc0b19504c51dcbf 100755
(executable)
--- a/
utils/NewNightlyTest.pl
+++ b/
utils/NewNightlyTest.pl
@@
-307,7
+307,6
@@
sub ChangeDir { # directory, logical name
print "ERROR!!! Cannot change directory to: $name ($dir) because $!";
return -1;
}
- return 0;
}
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@
-783,7
+782,7
@@
my ($WarningsAdded, $WarningsRemoved) = DiffFiles "-Warnings.txt";
sub TestDirectory {
my $SubDir = shift;
- ChangeDir( "projects/llvm-test/$SubDir", "Programs Test Subdirectory" ) || return ("", "");
+ ChangeDir( "
$BuildDir/llvm/
projects/llvm-test/$SubDir", "Programs Test Subdirectory" ) || return ("", "");
my $ProgramTestLog = "$Prefix-$SubDir-ProgramTest.txt";