diff options
Diffstat (limited to 'lldb/test/breakpoint_conditions/TestBreakpointConditions.py')
-rw-r--r-- | lldb/test/breakpoint_conditions/TestBreakpointConditions.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lldb/test/breakpoint_conditions/TestBreakpointConditions.py b/lldb/test/breakpoint_conditions/TestBreakpointConditions.py index e1c9dcac9d6..757e0edae12 100644 --- a/lldb/test/breakpoint_conditions/TestBreakpointConditions.py +++ b/lldb/test/breakpoint_conditions/TestBreakpointConditions.py @@ -56,6 +56,10 @@ class BreakpointConditionsTestCase(TestBase): # Now run the program. self.runCmd("run", RUN_SUCCEEDED) + # The process should be stopped. + 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, startstr = '(int) val = 3') |