Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def do_test(self):
self.assertEqual(frame.FindVariable("so_greater").summary, "greater")

@add_test_categories(["libc++"])
def test_libstdcxx(self):
def test_libcxx(self):
self.build(dictionary={"USE_LIBCPP": 1})
self.do_test()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def test_libstdcxx_debug(self):
self.do_test()

@add_test_categories(["msvcstl"])
def test_libstdcxx(self):
def test_msvcstl(self):
# No flags, because the "msvcstl" category checks that the MSVC STL is used by default.
self.build()
self.do_test()
3 changes: 0 additions & 3 deletions lldb/test/API/functionalities/gdb_remote_client/TestWasm.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,6 @@ def qHostInfo(self):
def QEnableErrorStrings(self):
return ""

def qfThreadInfo(self):
return "m1,"

def qRegisterInfo(self, index):
if index == 0:
return "name:pc;alt-name:pc;bitsize:64;offset:0;encoding:uint;format:hex;set:General Purpose Registers;gcc:16;dwarf:16;generic:pc;"
Expand Down
Loading