Skip to content

Commit e6b1b61

Browse files
committed
[lldb] Fix py3 incompatibility in gdbremote_testcase.py
This didn't cause test failures since this variable is only used during connection shutdown.
1 parent 28e1015 commit e6b1b61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/packages/Python/lldbsuite/test/tools/lldb-server/gdbremote_testcase.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class GdbRemoteTestCaseBase(TestBase):
3636
# Default sleep time in seconds. The sleep time is doubled under Asan.
3737
DEFAULT_SLEEP = 5 * (2 if ('ASAN_OPTIONS' in os.environ) else 1)
3838

39-
_GDBREMOTE_KILL_PACKET = "$k#6b"
39+
_GDBREMOTE_KILL_PACKET = b"$k#6b"
4040

4141
# Start the inferior separately, attach to the inferior on the stub
4242
# command line.

0 commit comments

Comments
 (0)