1f2914ad6336ebfb641dc7255f525f8b1f7fe200
[openbsd] /
1 import lldb
2 from lldbsuite.test.lldbtest import *
3 import lldbsuite.test.lldbutil as lldbutil
4
5
6 class ArrayTypedefTestCase(TestBase):
7
8     mydir = TestBase.compute_mydir(__file__)
9     NO_DEBUG_INFO_TESTCASE = True
10
11     def test_array_typedef(self):
12         self.build()
13         lldbutil.run_to_source_breakpoint(self, "// break here",
14             lldb.SBFileSpec("main.cpp", False))
15         self.expect("expr str", substrs=['"abcd"'])