bd5bc0ec72a97db397be0350ed7f385d28baa89e
[openbsd] /
1 import lldb
2 from lldbsuite.test.decorators import *
3 from lldbsuite.test.lldbtest import *
4 from lldbsuite.test import lldbutil
5
6 class TestFunctionTemplateSpecializationTempArgs(TestBase):
7
8     mydir = TestBase.compute_mydir(__file__)
9
10     def test_function_template_specialization_temp_args(self):
11         self.build()
12
13         (self.target, self.process, _, bkpt) = lldbutil.run_to_source_breakpoint(self, '// break here',
14                 lldb.SBFileSpec("main.cpp", False))
15
16         self.expect("expr p0",
17                 substrs=['(VType) $0 = {}'])