aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/python_api
diff options
context:
space:
mode:
authorJonas Devlieghere <jonas@devlieghere.com>2025-02-09 11:16:18 -0800
committerJonas Devlieghere <jonas@devlieghere.com>2025-02-09 11:16:59 -0800
commit472220077383b2dbd9cfcaffcc6030558ba7a744 (patch)
treef217398430fbeb19ea537f1eecee3d7b2fb71270 /lldb/test/API/python_api
parent3d140004c70e2bc79416825e43207e8b711c56d9 (diff)
downloadllvm-472220077383b2dbd9cfcaffcc6030558ba7a744.zip
llvm-472220077383b2dbd9cfcaffcc6030558ba7a744.tar.gz
llvm-472220077383b2dbd9cfcaffcc6030558ba7a744.tar.bz2
[lldb] Merge TestSBCommandReturnObject tests
In #125132, Michael pointed out that there are now two tests with the same name: ./lldb/test/API/api/command-return-object/TestSBCommandReturnObject.py ./lldb/test/API/python_api/commandreturnobject/TestSBCommandReturnObject.py
Diffstat (limited to 'lldb/test/API/python_api')
-rw-r--r--lldb/test/API/python_api/commandreturnobject/TestSBCommandReturnObject.py17
1 files changed, 0 insertions, 17 deletions
diff --git a/lldb/test/API/python_api/commandreturnobject/TestSBCommandReturnObject.py b/lldb/test/API/python_api/commandreturnobject/TestSBCommandReturnObject.py
deleted file mode 100644
index b0d0b7a..0000000
--- a/lldb/test/API/python_api/commandreturnobject/TestSBCommandReturnObject.py
+++ /dev/null
@@ -1,17 +0,0 @@
-import lldb
-from lldbsuite.test.decorators import *
-from lldbsuite.test.lldbtest import *
-from lldbsuite.test import lldbutil
-
-
-class SBCommandReturnObjectTest(TestBase):
- NO_DEBUG_INFO_TESTCASE = True
-
- def test(self):
- res = lldb.SBCommandReturnObject()
- self.assertEqual(res.GetCommand(), "")
-
- ci = self.dbg.GetCommandInterpreter()
- ci.HandleCommand("help help", res)
- self.assertTrue(res.Succeeded())
- self.assertEqual(res.GetCommand(), "help help")