This is an archive of the discontinued LLVM Phabricator instance.

[buildbot] Use CmakeCommand
AcceptedPublic

Authored by mpividori on Feb 8 2017, 2:54 PM.

Details

Diff Detail

Event Timeline

mpividori created this revision.Feb 8 2017, 2:54 PM
mpividori updated this revision to Diff 87733.Feb 8 2017, 4:44 PM
rnk accepted this revision.Feb 9 2017, 8:48 AM

lgtm

zorg/buildbot/builders/SanitizerBuilderWindows.py
81–84

IMO this is more Python-y:

cmake_args = []
if extra_configure_args:
    cmake_args = list(extra_configure_args)

I've always felt that using "[:]" to copy a list was confusing.

This revision is now accepted and ready to land.Feb 9 2017, 8:48 AM
mpividori added inline comments.Feb 9 2017, 10:33 AM
zorg/buildbot/builders/SanitizerBuilderWindows.py
81–84

@rnk Ok, I agree.