From: Chris Lattner Date: Sun, 11 May 2003 15:23:10 +0000 (+0000) Subject: Fix a halfway done change to the nightly tester :( X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=6e51bfa2ea01eaa4ece0b4ea9955a2fd719f85ea;p=oota-llvm.git 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 --- diff --git a/utils/NightlyTest.pl b/utils/NightlyTest.pl index f4c2d18751f..ec7edaa1e1a 100755 --- a/utils/NightlyTest.pl +++ b/utils/NightlyTest.pl @@ -281,6 +281,10 @@ if ($BuildError eq "") { $TestError = 1; $ProgramsTable = "

Error running tests!

"; } elsif (`grep '^gmake: .*No rule to make target' $Prefix-ProgramTest.txt | wc -l` + 0) { + $TestError = 1; + $ProgramsTable = + "

Makefile error running tests!

"; + } else { $TestError = 0; $ProgramsTable = ReadFile "report.nightly.html";