Fix System.Numerics.Vectors tests on iOS and other FullAOT targets#60335
Fix System.Numerics.Vectors tests on iOS and other FullAOT targets#60335akoeplinger merged 2 commits intodotnet:mainfrom
Conversation
Instead of using dynamic we can use explicit type checks which don't require runtime code generation. Also fixed running just a subset of xunit tests on Apple targets in tests.mobile.targets.
|
I couldn't figure out the best area label to add to this PR. If you have write-permissions please help me learn by adding exactly one area label. |
|
Tagging subscribers to this area: @dotnet/area-system-numerics Issue DetailsInstead of using
|
|
This seems like it would be a great place to use the new generic math feature? @tannergooding |
|
@danmoseley, yes, but it may also require more extensive changes to everything to allow it to work. Probably worth an up-for-grabs work item. |
|
Had to disable a few tests on Android x86 since they triggered a runtime assert: #60347 |
Instead of using
dynamicwe can use explicit type checks which don't require runtime code generation.Also fixed running just a subset of xunit tests on Apple targets in tests.mobile.targets.