| Sean Callanan | 72e4940 | 2011-08-05 23:43:37 +0000 | [diff] [blame] | 1 | """ |
| 2 | Tests that ObjC member variables are available where they should be. |
| 3 | """ |
| Jim Ingham | 63dfc72 | 2012-09-22 00:05:11 +0000 | [diff] [blame] | 4 | import lldb |
| Sean Callanan | 72e4940 | 2011-08-05 23:43:37 +0000 | [diff] [blame] | 5 | from lldbtest import * |
| Jim Ingham | 63dfc72 | 2012-09-22 00:05:11 +0000 | [diff] [blame] | 6 | import lldbutil |
| Sean Callanan | 72e4940 | 2011-08-05 23:43:37 +0000 | [diff] [blame] | 7 | |
| 8 | class ObjCSelfTestCase(TestBase): |
| 9 | |
| Greg Clayton | 4570d3e | 2013-12-10 23:19:29 +0000 | [diff] [blame^] | 10 | mydir = TestBase.compute_mydir(__file__) |
| Sean Callanan | 72e4940 | 2011-08-05 23:43:37 +0000 | [diff] [blame] | 11 | |
| 12 | @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin") |
| Johnny Chen | 24086bc | 2012-04-06 19:54:10 +0000 | [diff] [blame] | 13 | @dsym_test |
| Sean Callanan | 72e4940 | 2011-08-05 23:43:37 +0000 | [diff] [blame] | 14 | def test_with_dsym_and_run_command(self): |
| 15 | """Test that the appropriate member variables are available when stopped in Objective-C class and instance methods""" |
| 16 | self.buildDsym() |
| 17 | self.self_commands() |
| 18 | |
| Daniel Malea | 93aec0f | 2012-11-23 21:59:29 +0000 | [diff] [blame] | 19 | @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin") |
| Johnny Chen | 24086bc | 2012-04-06 19:54:10 +0000 | [diff] [blame] | 20 | @dwarf_test |
| Sean Callanan | 72e4940 | 2011-08-05 23:43:37 +0000 | [diff] [blame] | 21 | def test_with_dwarf_and_run_command(self): |
| 22 | """Test that the appropriate member variables are available when stopped in Objective-C class and instance methods""" |
| 23 | self.buildDwarf() |
| 24 | self.self_commands() |
| 25 | |
| 26 | def setUp(self): |
| 27 | TestBase.setUp(self) |
| 28 | |
| 29 | def set_breakpoint(self, line): |
| Jim Ingham | 63dfc72 | 2012-09-22 00:05:11 +0000 | [diff] [blame] | 30 | lldbutil.run_break_set_by_file_and_line (self, "main.m", line, num_expected_locations=1, loc_exact=True) |
| Sean Callanan | 72e4940 | 2011-08-05 23:43:37 +0000 | [diff] [blame] | 31 | |
| 32 | def self_commands(self): |
| 33 | """Test that the appropriate member variables are available when stopped in Objective-C class and instance methods""" |
| 34 | self.runCmd("file a.out", CURRENT_EXECUTABLE_SET) |
| 35 | |
| 36 | self.set_breakpoint(line_number('main.m', '// breakpoint 1')) |
| 37 | self.set_breakpoint(line_number('main.m', '// breakpoint 2')) |
| 38 | |
| 39 | self.runCmd("process launch", RUN_SUCCEEDED) |
| 40 | |
| 41 | self.expect("expression -- m_a = 2", |
| 42 | startstr = "(int) $0 = 2") |
| 43 | |
| 44 | self.runCmd("process continue") |
| 45 | |
| 46 | # This would be disallowed if we enforced const. But we don't. |
| 47 | self.expect("expression -- m_a = 2", |
| 48 | error=True) |
| 49 | |
| 50 | self.expect("expression -- s_a", |
| 51 | startstr = "(int) $1 = 5") |
| 52 | |
| 53 | if __name__ == '__main__': |
| 54 | import atexit |
| 55 | lldb.SBDebugger.Initialize() |
| 56 | atexit.register(lambda: lldb.SBDebugger.Terminate()) |
| 57 | unittest2.main() |