Skip to content

Commit

Permalink
[lldb] Use assertState in TestIgnoredExceptions
Browse files Browse the repository at this point in the history
  • Loading branch information
JDevlieghere committed Jun 27, 2022
1 parent a630ea3 commit e06a88c
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -56,8 +56,8 @@ def suspended_thread_test(self):
self.assertEqual(len(threads), 1, "Stopped at return breakpoint")

# Make sure we really changed the value:

process.Continue()
self.assertEqual(process.state, lldb.eStateExited, "Process exited")
self.assertState(process.state, lldb.eStateExited, "Process exited")
self.assertEqual(process.exit_state, 20, "Got the right exit status")

0 comments on commit e06a88c

Please sign in to comment.