[llvm-commits] [llvm] r42514 - /llvm/trunk/utils/NewNightlyTest.pl

Tanya Lattner tonic at nondot.org
Mon Oct 1 17:19:28 PDT 2007


Author: tbrethou
Date: Mon Oct  1 19:19:27 2007
New Revision: 42514

URL: http://llvm.org/viewvc/llvm-project?rev=42514&view=rev
Log:
If the user did not check out LLVM and request it to be built, it should be a build error. This relies on the user having a successful build of LLVM, but the tests will fail if they dont. 

Modified:
    llvm/trunk/utils/NewNightlyTest.pl

Modified: llvm/trunk/utils/NewNightlyTest.pl
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/NewNightlyTest.pl?rev=42514&r1=42513&r2=42514&view=diff

==============================================================================
--- llvm/trunk/utils/NewNightlyTest.pl (original)
+++ llvm/trunk/utils/NewNightlyTest.pl Mon Oct  1 19:19:27 2007
@@ -737,7 +737,6 @@
 my $BuildError = 0, $BuildStatus = "OK";
 if ($NOBUILD) {
   $BuildStatus = "Skipped by user";
-  $BuildError = 1;
 }
 elsif (`grep '^$MAKECMD\[^:]*: .*Error' $BuildLog | wc -l` + 0 ||
   `grep '^$MAKECMD: \*\*\*.*Stop.' $BuildLog | wc -l`+0) {





More information about the llvm-commits mailing list