https://github.com/Michael137 created https://github.com/llvm/llvm-project/pull/180250
Ran my python script from https://github.com/llvm/llvm-project/pull/97043 over the repo again and there was 2 duplicate test-cases that have been introduced since I last did this. Also one of the WASM classes had a duplicate method which I just removed. >From 0e886bedc8dfbdeca63f504a383d27e8037ec647 Mon Sep 17 00:00:00 2001 From: Michael Buch <[email protected]> Date: Fri, 6 Feb 2026 18:06:10 +0000 Subject: [PATCH] [lldb][test] Rename/remove duplicate methods in API tets Ran my python script from https://github.com/llvm/llvm-project/pull/97043 over the repo again and there was 2 duplicate test-cases that have been introduced since I last did this. Also one of the WASM classes had a duplicate method which I just removed. --- .../generic/ordering/TestDataFormatterStdOrdering.py | 2 +- .../generic/vbool/TestDataFormatterStdVBool.py | 2 +- lldb/test/API/functionalities/gdb_remote_client/TestWasm.py | 3 --- 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/lldb/test/API/functionalities/data-formatter/data-formatter-stl/generic/ordering/TestDataFormatterStdOrdering.py b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/generic/ordering/TestDataFormatterStdOrdering.py index fc6142ac5d738..b5895792ee4cf 100644 --- a/lldb/test/API/functionalities/data-formatter/data-formatter-stl/generic/ordering/TestDataFormatterStdOrdering.py +++ b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/generic/ordering/TestDataFormatterStdOrdering.py @@ -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() diff --git a/lldb/test/API/functionalities/data-formatter/data-formatter-stl/generic/vbool/TestDataFormatterStdVBool.py b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/generic/vbool/TestDataFormatterStdVBool.py index f74092ca3a0b8..03ebcba471776 100644 --- a/lldb/test/API/functionalities/data-formatter/data-formatter-stl/generic/vbool/TestDataFormatterStdVBool.py +++ b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/generic/vbool/TestDataFormatterStdVBool.py @@ -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() diff --git a/lldb/test/API/functionalities/gdb_remote_client/TestWasm.py b/lldb/test/API/functionalities/gdb_remote_client/TestWasm.py index 73c81efb79347..f025a1f94de54 100644 --- a/lldb/test/API/functionalities/gdb_remote_client/TestWasm.py +++ b/lldb/test/API/functionalities/gdb_remote_client/TestWasm.py @@ -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;" _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
