When compiling programs for the test suite we currently choose which stdlib to use based on the host platform, but should be basing this on the target platform.
Details
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
Comment Actions
A few changes, See inlined comments.
test/lldbtest.py | ||
---|---|---|
1687 ↗ | (On Diff #25877) | use self.platformIsDarwin() instead of: self.getPlatform() in getDarwinOSTriples() |
1737 ↗ | (On Diff #25877) | use `self.platformIsDarwin()` |
1824 ↗ | (On Diff #25877) | use `self.platformIsDarwin()` |
1841 ↗ | (On Diff #25877) | use `self.platformIsDarwin()` |
Comment Actions
Use platformIsDarwin instead of manually checking if the platform is in darwin triples.