- Send email notification to lldb "duty rotation alias" for any failures
- Ignore test failures on android-arm and android-aarch64
Details
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
zorg/buildbot/builders/LLDBBuilder.py | ||
---|---|---|
287 ↗ | (On Diff #26366) | 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. |
Comment Actions
Sorry, I mean
# i386/x86_64 are the only android arch that are expected to pass currently flunkTestFailure = arch in ('i386', 'x86_64'):
Comment Actions
I think the logic will be the same for x86_64, if it's added later, flunkTestFailure will have its initial value True in the original code.
I agree that the if statement could be eliminated.