2 Test basic std::vector functionality.
5 from lldbsuite.test.decorators import *
6 from lldbsuite.test.lldbtest import *
7 from lldbsuite.test import lldbutil
9 class TestBasicVector(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 = 3'])
24 self.expect("expr (int)a.front()", substrs=['(int) $1 = 3'])
25 self.expect("expr (int)a[1]", substrs=['(int) $2 = 1'])
26 self.expect("expr (int)a.back()", substrs=['(int) $3 = 2'])
28 self.expect("expr std::sort(a.begin(), a.end())")
29 self.expect("expr (int)a.front()", substrs=['(int) $4 = 1'])
30 self.expect("expr (int)a[1]", substrs=['(int) $5 = 2'])
31 self.expect("expr (int)a.back()", substrs=['(int) $6 = 3'])
33 self.expect("expr std::reverse(a.begin(), a.end())")
34 self.expect("expr (int)a.front()", substrs=['(int) $7 = 3'])
35 self.expect("expr (int)a[1]", substrs=['(int) $8 = 2'])
36 self.expect("expr (int)a.back()", substrs=['(int) $9 = 1'])
38 self.expect("expr (int)(*a.begin())", substrs=['(int) $10 = 3'])
39 self.expect("expr (int)(*a.rbegin())", substrs=['(int) $11 = 1'])
41 self.expect("expr a.pop_back()")
42 self.expect("expr (int)a.back()", substrs=['(int) $12 = 2'])
43 self.expect("expr (size_t)a.size()", substrs=['(size_t) $13 = 2'])
45 self.expect("expr (int)a.at(0)", substrs=['(int) $14 = 3'])
47 self.expect("expr a.push_back(4)")
48 self.expect("expr (int)a.back()", substrs=['(int) $15 = 4'])
49 self.expect("expr (size_t)a.size()", substrs=['(size_t) $16 = 3'])
51 self.expect("expr a.emplace_back(5)")
52 self.expect("expr (int)a.back()", substrs=['(int) $17 = 5'])
53 self.expect("expr (size_t)a.size()", substrs=['(size_t) $18 = 4'])