Assertion Failure: Test crashed with signal ill.

I get this error from time to time in UI tests when they are run on CI. Any ideas what might be causing this error?

Answered by DTS Engineer in 746243022

signal ill probably means that the program crashed with a SIGILL signal, which is the standard way for Intel code to trap (that is, deliberately crash). See Understanding the exception types in a crash report.

To debug this you need to get a crash report from your CI system. Can you do that?

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"

Accepted Answer

signal ill probably means that the program crashed with a SIGILL signal, which is the standard way for Intel code to trap (that is, deliberately crash). See Understanding the exception types in a crash report.

To debug this you need to get a crash report from your CI system. Can you do that?

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"

hi @maveric94, were you able to resolve this? having the same issue for my iOS UI test

@appledev99928 Well, these crashes do not occur too often, so for now I just added collection of crashlogs from ~/Library/Logs/DiagnosticReports/. So when they do happen, I could at least examine crashreport

Assertion Failure: Test crashed with signal ill.
 
 
Q