diff options
Diffstat (limited to 'lldb/test/functionalities/breakpoint/breakpoint_conditions/TestBreakpointConditions.py')
-rw-r--r-- | lldb/test/functionalities/breakpoint/breakpoint_conditions/TestBreakpointConditions.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lldb/test/functionalities/breakpoint/breakpoint_conditions/TestBreakpointConditions.py b/lldb/test/functionalities/breakpoint/breakpoint_conditions/TestBreakpointConditions.py index bb0e1773d34..786588bdfea 100644 --- a/lldb/test/functionalities/breakpoint/breakpoint_conditions/TestBreakpointConditions.py +++ b/lldb/test/functionalities/breakpoint/breakpoint_conditions/TestBreakpointConditions.py @@ -85,8 +85,8 @@ class BreakpointConditionsTestCase(TestBase): self.expect("process status", PROCESS_STOPPED, patterns = ['Process .* stopped']) - # 'frame variable -T val' should return 3 due to breakpoint condition. - self.expect("frame variable -T val", VARIABLES_DISPLAYED_CORRECTLY, + # 'frame variable --show-types val' should return 3 due to breakpoint condition. + self.expect("frame variable --show-types val", VARIABLES_DISPLAYED_CORRECTLY, startstr = '(int) val = 3') # Also check the hit count, which should be 3, by design. @@ -116,8 +116,8 @@ class BreakpointConditionsTestCase(TestBase): self.expect("process status", PROCESS_STOPPED, patterns = ['Process .* stopped']) - # 'frame variable -T val' should return 1 since it is the first breakpoint hit. - self.expect("frame variable -T val", VARIABLES_DISPLAYED_CORRECTLY, + # 'frame variable --show-types val' should return 1 since it is the first breakpoint hit. + self.expect("frame variable --show-types val", VARIABLES_DISPLAYED_CORRECTLY, startstr = '(int) val = 1') |