Details
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
Comment Actions
Please see my comments.
packages/Python/lldbsuite/test/lldbtest.py | ||
---|---|---|
464 ↗ | (On Diff #40463) | I think in case of Android we can always treat result of parsed_url.netloc.split(":")[0] as a device id unless it's set to 'localhost' - it should hold true for any protocol scheme. |
packages/Python/lldbsuite/test/tools/lldb-server/gdbremote_testcase.py | ||
64 ↗ | (On Diff #40463) | You may use "unix-" to allow regular domain sockets as well. |
69 ↗ | (On Diff #40463) | if host != 'localhost' ? |
packages/Python/lldbsuite/test/tools/lldb-server/gdbremote_testcase.py | ||
---|---|---|
69 ↗ | (On Diff #40469) | As discussed offline, add check for remote platform is android as well. |
Comment Actions
LGTM
packages/Python/lldbsuite/test/lldbtest.py | ||
---|---|---|
464 ↗ | (On Diff #40469) | Nit - you may save parsed_url.netloc.split(":")[0] as local variable like host_name |