diff --git a/lldb/test/API/macosx/ignore_exceptions/TestIgnoredExceptions.py b/lldb/test/API/macosx/ignore_exceptions/TestIgnoredExceptions.py index 16fa762245825..e90b2ef8dbb30 100644 --- a/lldb/test/API/macosx/ignore_exceptions/TestIgnoredExceptions.py +++ b/lldb/test/API/macosx/ignore_exceptions/TestIgnoredExceptions.py @@ -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") - +