You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR disables UnhandledExceptionHandler tests with native components on llvmfullaot runtime to address compatibility issues. The tests involve loading native libraries that interact with the runtime in ways that cause problems with LLVM full AOT compilation.
Adds exclusion rules for UnhandledExceptionHandler tests in Foreign and PInvoke subdirectories
Follows existing pattern used for similar tests that have native component interactions
…io in Mono. (#118878)
* Implement UnhandledException hook for finalizers in Mono.
* Cache the finalize method on wasm
* Precompile invoke helper for GuardedFinalize
* only check for GuardedFinalize in corlib
* make GuardedFinalize virtual
* use mono_runtime_try_invoke, since we can wih instance methods
* comment out unused
* Move GuardedFinalize to a helper class
* make it static
* some cleanup
* remove no longer relevant comment
* Disable UnhandledExceptionHandler tests with foreign threads on `llvmfullaot` (#119039)
These kind of tests are not compatible.
---------
Co-authored-by: vsadov <8218165+VSadov@users.noreply.github.com>
Co-authored-by: Vladimir Sadov <vsadov@microsoft.com>
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes: #118981
These tests load a native .dll/.so , which starts threads, enters the runtime, runs managed code, throws unhandled exceptions...
We have other similar tests. They are marked as incompatible with
llvmfullaot.I guess, these should be marked incompatible as well.