From: Chris Lattner Date: Sat, 10 May 2003 21:40:10 +0000 (+0000) Subject: Get the nightly tester to detect other kind of testing problems X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=2e8be1416566515cd408aef0408fcbacdb6e1cba;p=oota-llvm.git Get the nightly tester to detect other kind of testing problems git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6083 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/NightlyTest.pl b/utils/NightlyTest.pl index b8b6f4c56f6..f4c2d18751f 100755 --- a/utils/NightlyTest.pl +++ b/utils/NightlyTest.pl @@ -279,8 +279,8 @@ if ($BuildError eq "") { if (`grep '^gmake: .*Error' $Prefix-ProgramTest.txt | wc -l` + 0) { $TestError = 1; - $ProgramsTable = "

Error running tests!

"; - } else { + $ProgramsTable = "

Error running tests!

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