aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-05-11 15:23:10 +0000
committerChris Lattner <sabre@nondot.org>2003-05-11 15:23:10 +0000
commit6e51bfa2ea01eaa4ece0b4ea9955a2fd719f85ea (patch)
tree1f889714c0712867f0415a2eefb968db9ed88946
parent2e8be1416566515cd408aef0408fcbacdb6e1cba (diff)
Fix a halfway done change to the nightly tester :(
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6084 91177308-0d34-0410-b5e6-96231b3b80d8
-rwxr-xr-xutils/NightlyTest.pl4
1 files changed, 4 insertions, 0 deletions
diff --git a/utils/NightlyTest.pl b/utils/NightlyTest.pl
index f4c2d18751..ec7edaa1e1 100755
--- a/utils/NightlyTest.pl
+++ b/utils/NightlyTest.pl
@@ -281,6 +281,10 @@ if ($BuildError eq "") {
$TestError = 1;
$ProgramsTable = "<font color=white><h2>Error running tests!</h2></font>";
} elsif (`grep '^gmake: .*No rule to make target' $Prefix-ProgramTest.txt | wc -l` + 0) {
+ $TestError = 1;
+ $ProgramsTable =
+ "<font color=white><h2>Makefile error running tests!</h2></font>";
+ } else {
$TestError = 0;
$ProgramsTable = ReadFile "report.nightly.html";