summaryrefslogtreecommitdiff
path: root/lldb/test/API/python_api
diff options
context:
space:
mode:
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 b0d0b7a8dfe4..000000000000
--- 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")