840bacb86b30a746c8745e191dcf78dc4099ebac
[openbsd] /
1 """
2 Test basic std::vector functionality.
3 """
4
5 from lldbsuite.test.decorators import *
6 from lldbsuite.test.lldbtest import *
7 from lldbsuite.test import lldbutil
8
9 class TestBasicVector(TestBase):
10
11     mydir = TestBase.compute_mydir(__file__)
12
13     @add_test_categories(["libc++"])
14     @skipIf(compiler=no_match("clang"))
15     def test(self):
16         self.build()
17
18         lldbutil.run_to_source_breakpoint(self,
19             "// Set break point at this line.", lldb.SBFileSpec("main.cpp"))
20
21         self.runCmd("settings set target.import-std-module true")
22
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'])
27
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'])
32
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'])
37
38         self.expect("expr (int)(*a.begin())", substrs=['(int) $10 = 3'])
39         self.expect("expr (int)(*a.rbegin())", substrs=['(int) $11 = 1'])
40
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'])
44
45         self.expect("expr (int)a.at(0)", substrs=['(int) $14 = 3'])
46
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'])
50
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'])