Index: lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/move_nearest/foo.h =================================================================== --- lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/move_nearest/foo.h +++ lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/move_nearest/foo.h @@ -1,6 +1,5 @@ -LLDB_TEST_API inline int foo1() { return 1; } // !BR1 +inline int foo1() { return 1; } // !BR1 -LLDB_TEST_API inline int foo2() { return 2; } // !BR2 +inline int foo2() { return 2; } // !BR2 LLDB_TEST_API extern int call_foo1(); -LLDB_TEST_API extern int call_foo2(); Index: lldb/packages/Python/lldbsuite/test/python_api/sbdata/TestSBData.py =================================================================== --- lldb/packages/Python/lldbsuite/test/python_api/sbdata/TestSBData.py +++ lldb/packages/Python/lldbsuite/test/python_api/sbdata/TestSBData.py @@ -25,7 +25,7 @@ def test_byte_order_and_address_byte_size(self): """Test the SBData::SetData() to ensure the byte order and address byte size are obeyed""" - addr_data = '\x11\x22\x33\x44\x55\x66\x77\x88' + addr_data = b'\x11\x22\x33\x44\x55\x66\x77\x88' error = lldb.SBError() data = lldb.SBData() data.SetData(error, addr_data, lldb.eByteOrderBig, 4)