2 Test std::vector functionality when it's contents are vectors.
5 from lldbsuite.test.decorators import *
6 from lldbsuite.test.lldbtest import *
7 from lldbsuite.test import lldbutil
9 class TestVectorOfVectors(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 (size_t)a.size()", substrs=['(size_t) $0 = 2'])
24 self.expect("expr (int)a.front().front()", substrs=['(int) $1 = 1'])
25 self.expect("expr (int)a[1][1]", substrs=['(int) $2 = 2'])
26 self.expect("expr (int)a.back().at(0)", substrs=['(int) $3 = 3'])