Author: Pavel Labath Date: 2020-08-14T12:15:25+02:00 New Revision: e6b1b61054c285efad7bf4ee0a4da53e56944d87
URL: https://github.com/llvm/llvm-project/commit/e6b1b61054c285efad7bf4ee0a4da53e56944d87 DIFF: https://github.com/llvm/llvm-project/commit/e6b1b61054c285efad7bf4ee0a4da53e56944d87.diff LOG: [lldb] Fix py3 incompatibility in gdbremote_testcase.py This didn't cause test failures since this variable is only used during connection shutdown. Added: Modified: lldb/packages/Python/lldbsuite/test/tools/lldb-server/gdbremote_testcase.py Removed: ################################################################################ diff --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/gdbremote_testcase.py b/lldb/packages/Python/lldbsuite/test/tools/lldb-server/gdbremote_testcase.py index cea0fee3aaaf..253fd35d461e 100644 --- a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/gdbremote_testcase.py +++ b/lldb/packages/Python/lldbsuite/test/tools/lldb-server/gdbremote_testcase.py @@ -36,7 +36,7 @@ class GdbRemoteTestCaseBase(TestBase): # Default sleep time in seconds. The sleep time is doubled under Asan. DEFAULT_SLEEP = 5 * (2 if ('ASAN_OPTIONS' in os.environ) else 1) - _GDBREMOTE_KILL_PACKET = "$k#6b" + _GDBREMOTE_KILL_PACKET = b"$k#6b" # Start the inferior separately, attach to the inferior on the stub # command line. _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits