1from lldbsuite.test.decorators import *
2from lldbsuite.test.lldbtest import *
3from lldbsuite.test import lldbutil
4
5
6class TestCase(TestBase):
7
8    @skipIf # rdar://problem/53931074
9    def test(self):
10        self.build()
11        target = self.createTestTarget()
12        callee_break = target.BreakpointCreateByName(
13            "SomeClass::SomeClass(ParamClass)", None)
14        self.assertTrue(callee_break.GetNumLocations() > 0)
15        self.runCmd("run", RUN_SUCCEEDED)
16
17        to_complete = "e ParamClass"
18        self.dbg.GetCommandInterpreter().HandleCompletion(to_complete, len(to_complete), 0, -1, lldb.SBStringList())
19