4615d249bb1b788521291e751a9b919201acd3b8
[openbsd] /
1 """
2 Test basic std::list functionality.
3 """
4
5 from lldbsuite.test.decorators import *
6 from lldbsuite.test.lldbtest import *
7 from lldbsuite.test import lldbutil
8
9 class TestBasicDeque(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.back()", substrs=['(int) $2 = 2'])
26
27         self.expect("expr std::sort(a.begin(), a.end())")
28         self.expect("expr (int)a.front()", substrs=['(int) $3 = 1'])
29         self.expect("expr (int)a.back()", substrs=['(int) $4 = 3'])
30
31         self.expect("expr std::reverse(a.begin(), a.end())")
32         self.expect("expr (int)a.front()", substrs=['(int) $5 = 3'])
33         self.expect("expr (int)a.back()", substrs=['(int) $6 = 1'])
34
35         self.expect("expr (int)(*a.begin())", substrs=['(int) $7 = 3'])
36         self.expect("expr (int)(*a.rbegin())", substrs=['(int) $8 = 1'])
37