This aims to fix test failures on the following buildbots:
Details
Details
- Reviewers
ldionne - Group Reviewers
Restricted Project Restricted Project - Commits
- rGfee0026fc7eb: [libc++abi] Fix remote execution of .sh.cpp tests
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
libcxx/utils/ssh.py | ||
---|---|---|
73 | We're dealing with target-specific paths here. For now assume that the target uses POSIX paths. | |
libcxxabi/test/incomplete_type.sh.cpp | ||
25 | We need this because if both static and shared libc++abi are present, the linker will prefer the shared one. And if we're running this test viaSSH, we want to link it statically. |
Comment Actions
I don't like adding a new substitution just to handle that specific configuration, but we can get rid of it soon when we simplify the config files anyway.
Other changes for posixpath & al look obviously right.
We're dealing with target-specific paths here. For now assume that the target uses POSIX paths.