2 Test std::shared_ptr functionality with a class from debug info as content.
5 from lldbsuite.test.decorators import *
6 from lldbsuite.test.lldbtest import *
7 from lldbsuite.test import lldbutil
9 class TestSharedPtrDbgInfoContent(TestBase):
11 mydir = TestBase.compute_mydir(__file__)
13 @add_test_categories(["libc++"])
14 @skipIf(compiler=no_match("clang"))
18 lldbutil.run_to_source_breakpoint(self,
19 "// Set break point at this line.", lldb.SBFileSpec("main.cpp"))
21 self.runCmd("settings set target.import-std-module true")
23 self.expect("expr (int)s->a", substrs=['(int) $0 = 3'])
24 self.expect("expr (int)(s->a = 5)", substrs=['(int) $1 = 5'])
25 self.expect("expr (int)s->a", substrs=['(int) $2 = 5'])
26 self.expect("expr (bool)s", substrs=['(bool) $3 = true'])
27 self.expect("expr s.reset()")
28 self.expect("expr (bool)s", substrs=['(bool) $4 = false'])