[llvm-commits] [zorg] r98126 - /zorg/trunk/zorg/buildbot/commands/NightlyTestCommand.py
Daniel Dunbar
daniel at zuster.org
Tue Mar 9 18:32:23 PST 2010
Author: ddunbar
Date: Tue Mar 9 20:32:22 2010
New Revision: 98126
URL: http://llvm.org/viewvc/llvm-project?rev=98126&view=rev
Log:
NightlyTestCommand: Don't fail the nightly test step if 'make' fails, the
makefiles tend to fail once in a while.
Modified:
zorg/trunk/zorg/buildbot/commands/NightlyTestCommand.py
Modified: zorg/trunk/zorg/buildbot/commands/NightlyTestCommand.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/zorg/buildbot/commands/NightlyTestCommand.py?rev=98126&r1=98125&r2=98126&view=diff
==============================================================================
--- zorg/trunk/zorg/buildbot/commands/NightlyTestCommand.py (original)
+++ zorg/trunk/zorg/buildbot/commands/NightlyTestCommand.py Tue Mar 9 20:32:22 2010
@@ -16,8 +16,10 @@
def evaluateCommand(self, cmd):
# Always fail if the command itself failed.
- if cmd.rc != 0:
- return builder.FAILURE
+ #
+ # Disabled for now, nightlytest is so broken.
+ #if cmd.rc != 0:
+ # return buildbot.status.builder.FAILURE
failures = {}
xfailures = {}
More information about the llvm-commits
mailing list