]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - packages/Python/lldbsuite/test/lang/cpp/static_members/TestCPPStaticMembers.py
Vendor import of lldb release_39 branch r276489:
[FreeBSD/FreeBSD.git] / packages / Python / lldbsuite / test / lang / cpp / static_members / TestCPPStaticMembers.py
1 """
2 Tests that C++ member and static variables have correct layout and scope.
3 """
4
5 from __future__ import print_function
6
7
8
9 import unittest2
10 import lldb
11 from lldbsuite.test.decorators import *
12 from lldbsuite.test.lldbtest import *
13 from lldbsuite.test import lldbutil
14
15 class CPPStaticMembersTestCase(TestBase):
16     
17     mydir = TestBase.compute_mydir(__file__)
18     
19     @unittest2.expectedFailure # llvm.org/pr15401
20     @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr21765")
21     def test_with_run_command(self):
22         """Test that member variables have the correct layout, scope and qualifiers when stopped inside and outside C++ methods"""
23         self.build()
24         self.runCmd("file a.out", CURRENT_EXECUTABLE_SET)
25
26         self.set_breakpoint(line_number('main.cpp', '// breakpoint 1'))
27         self.set_breakpoint(line_number('main.cpp', '// breakpoint 2'))
28
29         self.runCmd("process launch", RUN_SUCCEEDED)
30         self.expect("expression my_a.access()",
31                     startstr = "(long) $0 = 10")
32         
33         self.expect("expression my_a.m_a",
34                     startstr = "(short) $1 = 1")
35         
36         # Note: SymbolFileDWARF::ParseChildMembers doesn't call AddFieldToRecordType, consistent with clang's AST layout.
37         self.expect("expression my_a.s_d",
38                     startstr = "(int) $2 = 4")
39         
40         self.expect("expression my_a.s_b",
41                     startstr = "(long) $3 = 2")
42         
43         self.expect("expression A::s_b",
44                     startstr = "(long) $4 = 2")
45
46         # should not be available in global scope 
47         self.expect("expression s_d",
48                     startstr = "error: use of undeclared identifier 's_d'")
49         
50         self.runCmd("process continue")
51         self.expect("expression m_c",
52                     startstr = "(char) $5 = \'\\x03\'")
53         
54         self.expect("expression s_b",
55                     startstr = "(long) $6 = 2")
56
57         self.runCmd("process continue")
58
59     def set_breakpoint(self, line):
60         lldbutil.run_break_set_by_file_and_line (self, "main.cpp", line, num_expected_locations=1, loc_exact=False)