[zorg] r174066 - Revised r173940 based on feedback from David Blaikie.
David Dean
david_dean at apple.com
Thu Jan 31 08:56:11 PST 2013
Author: ddean
Date: Thu Jan 31 10:56:11 2013
New Revision: 174066
URL: http://llvm.org/viewvc/llvm-project?rev=174066&view=rev
Log:
Revised r173940 based on feedback from David Blaikie.
Modified:
zorg/trunk/zorg/buildbot/commands/LitTestCommand.py
Modified: zorg/trunk/zorg/buildbot/commands/LitTestCommand.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/zorg/buildbot/commands/LitTestCommand.py?rev=174066&r1=174065&r2=174066&view=diff
==============================================================================
--- zorg/trunk/zorg/buildbot/commands/LitTestCommand.py (original)
+++ zorg/trunk/zorg/buildbot/commands/LitTestCommand.py Thu Jan 31 10:56:11 2013
@@ -33,7 +33,7 @@ class LitLogObserver(LogLineObserver):
# Check for test failure logs.
m = self.kTestFailureLogStartRE.match(line)
if m and self.inFailure:
- if self.inFailure[0] in m.group(0):
+ if m.group(1)==self.inFailure[0]:
self.inFailure[1].append(line)
self.inFailureContext = True
self.failed = True
More information about the llvm-commits
mailing list