This is an archive of the discontinued LLVM Phabricator instance.

run-clang-tidy: Use check_call instead of check_output
ClosedPublic

Authored by kfunk on Sep 5 2017, 8:24 AM.

Details

Summary

Streamlines the output under Python 3.x.

Before:

b'Enabled checks:\n    clang-analyzer-apiModeling.google.GTest\n ...

After:

Enabled checks:
    clang-analyzer-apiModeling.google.GTest
...

Diff Detail

Repository
rL LLVM

Event Timeline

kfunk created this revision.Sep 5 2017, 8:24 AM
kfunk edited the summary of this revision. (Show Details)Sep 5 2017, 8:32 AM

Bump? This is a trivial one

alexfh accepted this revision.Nov 27 2017, 4:44 AM

LG, if this still works under Python 2.

This revision is now accepted and ready to land.Nov 27 2017, 4:44 AM
This revision was automatically updated to reflect the committed changes.