[PATCH] Send email notification for failures on lldb android builder

Vince Harron vince at nethacker.com
Mon May 25 20:17:47 PDT 2015


================
Comment at: zorg/buildbot/builders/LLDBBuilder.py:287
@@ +286,3 @@
+                    #ignore test failures on android arm and aarch64
+                    if arch in ('arm', 'aarch64'):
+                        flunkTestFailure = False
----------------
I recommend something like:

flunkTestFailure = arch in ('arm', 'aarch64'):

That way, if we add more archs (x86_64 for example) after arm/arm64, it can be set back to true.

http://reviews.llvm.org/D9953

EMAIL PREFERENCES
  http://reviews.llvm.org/settings/panel/emailpreferences/






More information about the llvm-commits mailing list