-
Notifications
You must be signed in to change notification settings - Fork 519
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[runtime] Handle fatal managed exceptions a bit better in the runtime. (
#15029) Handle managed exceptions a bit better when we know there won't be any other managed frames further up the stack (such as in the main method). In this case, there's no use in trying to convert the managed exception into an Objective-C exception, because we already know the process will be terminated. Instead just print the exception to stderr, and abort immediately. This means we'll actually get some useful information printed to stderr.
- Loading branch information
1 parent
61ef886
commit 27d1d02
Showing
3 changed files
with
18 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27d1d02
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💻 [CI Build] Tests on macOS Mac Catalina (10.15) passed 💻
✅ All tests on macOS Mac Catalina (10.15) passed.
Pipeline on Agent
Hash: 27d1d0292b7dba0fc8bd7387b2733fedd18ace5a
27d1d02
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💻 [CI Build] Tests on macOS M1 - Mac Big Sur (11.5) passed 💻
✅ All tests on macOS M1 - Mac Big Sur (11.5) passed.
Pipeline on Agent
Hash: 27d1d0292b7dba0fc8bd7387b2733fedd18ace5a
27d1d02
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
📋 [CI Build] API Diff 📋
API Current PR diff
ℹ️ API Diff (from PR only) (please review changes)
View API diff
View dotnet API diff
View dotnet legacy API diff
View dotnet iOS-MacCatalayst API diff
API diff
✅ API Diff from stable
View API diff
View dotnet API diff
View dotnet legacy API diff
View dotnet iOS-MacCatalayst API diff
Generator diff
✅ Generator Diff (no change)
Pipeline on Agent XAMMINI-058.Monterey'
Hash: 27d1d0292b7dba0fc8bd7387b2733fedd18ace5a
27d1d02
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
📚 [CI Build] Artifacts 📚
Packages generated
View packages
Pipeline on Agent XAMMINI-061.Monterey
Hash: 27d1d0292b7dba0fc8bd7387b2733fedd18ace5a
27d1d02
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
✅ [CI Build] Tests passed on VSTS: simulator tests iOS. ✅
Tests passed on VSTS: simulator tests iOS.
🎉 All 234 tests passed 🎉
Pipeline on Agent XAMBOT-1023.Monterey'
[runtime] Handle fatal managed exceptions a bit better in the runtime. (#15029)