-
Notifications
You must be signed in to change notification settings - Fork 11.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[LLDB] Make 'process load' take remote os path delimiter into account
Currently, if we execute 'process load' with remote debugging, it uses host's path delimiter to lookup files on target machine. If we run remote debugging of Linux target on Windows and execute 'process load C:\foo\a.so', lldb-server tries to load \foo\a.so instead of /foo/a.so. It affects several API tests. This commit fixes that error. Also, it contains minor fixes for TestLoadUnload.py for testing on Windows host and Linux target.
- Loading branch information
1 parent
73dad7a
commit aee177b
Showing
2 changed files
with
9 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters