[llvm-commits] CVS: llvm/utils/NewNightlyTest.pl
Patrick Jenkins
pjenkins at apple.com
Thu Jul 27 13:21:40 PDT 2006
Changes in directory llvm/utils:
NewNightlyTest.pl updated: 1.32 -> 1.33
---
Log message:
ChangeDir now returns the correct value
---
Diffs of the changes: (+2 -1)
NewNightlyTest.pl | 3 ++-
1 files changed, 2 insertions(+), 1 deletion(-)
Index: llvm/utils/NewNightlyTest.pl
diff -u llvm/utils/NewNightlyTest.pl:1.32 llvm/utils/NewNightlyTest.pl:1.33
--- llvm/utils/NewNightlyTest.pl:1.32 Thu Jul 27 14:22:06 2006
+++ llvm/utils/NewNightlyTest.pl Thu Jul 27 15:21:26 2006
@@ -305,8 +305,9 @@
$result = chdir($dir);
if(!$result){
print "ERROR!!! Cannot change directory to: $name ($dir) because $!";
- return -1;
+ return false;
}
+ return true;
}
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
More information about the llvm-commits
mailing list