2 Test lldb data formatter subsystem.
8 from lldbsuite.test.decorators import *
9 from lldbsuite.test.lldbtest import *
10 from lldbsuite.test import lldbutil
13 class DataFormatterBoolRefPtr(TestBase):
15 mydir = TestBase.compute_mydir(__file__)
18 def test_boolrefptr_with_run_command(self):
19 """Test the formatters we use for BOOL& and BOOL* in Objective-C."""
21 self.boolrefptr_data_formatter_commands()
24 # Call super's setUp().
26 # Find the line number to break at.
27 self.line = line_number('main.mm', '// Set break point at this line.')
29 def boolrefptr_data_formatter_commands(self):
30 """Test the formatters we use for BOOL& and BOOL* in Objective-C."""
31 self.runCmd("file " + self.getBuildArtifact("a.out"), CURRENT_EXECUTABLE_SET)
33 lldbutil.run_break_set_by_file_and_line(
34 self, "main.mm", self.line, num_expected_locations=1, loc_exact=True)
36 self.runCmd("run", RUN_SUCCEEDED)
38 # The stop reason of the thread should be breakpoint.
39 self.expect("thread list", STOPPED_DUE_TO_BREAKPOINT,
41 'stop reason = breakpoint'])
43 # This is the function to remove the custom formats in order to have a
44 # clean slate for the next test case.
46 self.runCmd('type format clear', check=False)
47 self.runCmd('type summary clear', check=False)
48 self.runCmd('type synth clear', check=False)
50 # Execute the cleanup function during test case tear down.
51 self.addTearDownHook(cleanup)
53 isiOS = (lldbplatformutil.getPlatform() == 'ios' or lldbplatformutil.getPlatform() == 'watchos')
55 # Now check that we use the right summary for BOOL&
56 self.expect('frame variable yes_ref',
58 self.expect('frame variable no_ref',
61 self.expect('frame variable unset_ref', substrs=['12'])
63 # Now check that we use the right summary for BOOL*
64 self.expect('frame variable yes_ptr',
66 self.expect('frame variable no_ptr',
69 self.expect('frame variable unset_ptr', substrs=['12'])
71 # Now check that we use the right summary for BOOL
72 self.expect('frame variable yes',
74 self.expect('frame variable no',
77 self.expect('frame variable unset', substrs=['12'])