This is intended to be equivalent to the old SanitizerBuilderWindows
buidlbot factory code. Next, I'll look into enabling libfuzzer testing
on this bot, and make sure it's on VS 2017.
Details
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
Comment Actions
LGTM, with some suggestions in the comments.
zorg/buildbot/builders/annotated/annotated_builder.py | ||
---|---|---|
249 ↗ | (On Diff #184165) | You could elide the None here; it's the default. |
zorg/buildbot/builders/annotated/sanitizer-windows.py | ||
48 ↗ | (On Diff #184165) | You can omit this; check True for all stages is the default. I don't terribly mind making it explicit, so I'm ok if you prefer to leave it in. |
Comment Actions
Thanks!
zorg/buildbot/builders/annotated/sanitizer-windows.py | ||
---|---|---|
48 ↗ | (On Diff #184165) | Ah, that I didn't know. |
Comment Actions
- just raise KeyError instead of using .get()
zorg/buildbot/builders/annotated/annotated_builder.py | ||
---|---|---|
249 ↗ | (On Diff #184165) | I realized that my "report" call below doesn't actually fail the build. I'm going to just let it throw KeyError, since it indicates a programming error. I wanted to try to make it more usable, but I just don't think this code is going to last very long with the impending monorepo reorg, so let's do the simple thing. |