Enable filtering for tests on coreclr interpreter#16385
Merged
janvorli merged 1 commit intodotnet:mainfrom Dec 8, 2025
Merged
Conversation
While the CoreClrConfigurationDetection and RuntimeTestModes were already modified to add support for coreclr interpreter detection, it was missing wiring in the SkipOnCoreClrAttribute. So setting the attribute with RuntimeTestModes.InterpreterActive on a test has no effect. This change fixes it.
Member
|
It is ok to fix this in Arcade, however I think it is better to use PlatformDetection properties to skip tests - it is more flexible. I would add IsCoreClrInterpreter / IsNotCoreClrInterpreter to PlatformDetection under libraries next to the existing IsMonoClrInterpreter properties: And used it to implement to disable the tests as needed. I can look like this: |
jkotas
approved these changes
Dec 8, 2025
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
While the
CoreClrConfigurationDetectionandRuntimeTestModeswere already modified to add support for coreclr interpreter detection, it was missing wiring in theSkipOnCoreClrAttribute. So setting the attribute withRuntimeTestModes.InterpreterActiveon a test has no effect.This change fixes it.