File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
lldb/packages/Python/lldbsuite/test/tools/lldb-server Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -130,9 +130,9 @@ def setUp(self):
130
130
self .stub_sends_two_stop_notifications_on_kill = False
131
131
if configuration .lldb_platform_url :
132
132
if configuration .lldb_platform_url .startswith ("unix-" ):
133
- url_pattern = "(.+)://\[?(.+?)\]?/.*"
133
+ url_pattern = r "(.+)://\[?(.+?)\]?/.*"
134
134
else :
135
- url_pattern = "(.+)://(.+):\d+"
135
+ url_pattern = r "(.+)://(.+):\d+"
136
136
scheme , host = re .match (
137
137
url_pattern , configuration .lldb_platform_url
138
138
).groups ()
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ def get_debugserver_exe():
50
50
51
51
52
52
_LOG_LINE_REGEX = re .compile (
53
- r"^(lldb-server|debugserver)\s+<\s*(\d+)>" + " \s+(read|send)\s+packet:\s+(.+)$"
53
+ r"^(lldb-server|debugserver)\s+<\s*(\d+)>\s+(read|send)\s+packet:\s+(.+)$"
54
54
)
55
55
56
56
You can’t perform that action at this time.
0 commit comments