Once we move off entirely from the legacy testing framework, this will
allow removing a bunch of code.
Details
Details
- Reviewers
EricWF - Group Reviewers
Restricted Project - Commits
- rGd8afac7a2b73: [libc++] Use Python subprocess instead of libc++'s own utilities
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
libcxx/utils/libcxx/sym_check/util.py | ||
---|---|---|
69–70 | I believe this needs capture_output=True to work. Has this been tested? |
libcxx/utils/libcxx/sym_check/util.py | ||
---|---|---|
69–70 | Oh, and I think it's missing a .decode() call as well. |
libcxx/utils/libcxx/sym_check/util.py | ||
---|---|---|
69–70 | I did run the check-cxx-abilist target, which should run this unless mistaken. EDIT: Well, it turns out I was mistaken! This is only called when there *is* a difference in the two ABI lists, and I had only tested with matching ABI lists. Fixed now, thanks for the catch. |
I believe this needs capture_output=True to work.
Has this been tested?