Slightly improve the test framework#84
Merged
LuernOutOfOrder merged 5 commits intodevelopfrom Jan 20, 2026
Merged
Conversation
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.
This pull request introduces a new
TestSuiteBehaviorenum to allow marking test suites as "Default" or "Skipped", and updates the test framework to support skipping both test suites and individual test cases. It also improves test result reporting to account for skipped tests and suites. Additionally, it refactors the test suite initialization and registration process, moving the suite registration into a dedicatedsuitesmodule for better organization. Some minor code style and import ordering changes are also included.Test framework enhancements:
TestSuiteBehaviorenum and updated theTestSuitestruct and initialization to support marking test suites as "Default" or "Skipped". Test cases also gain aSkippedbehavior. [1] [2]Test suite and case usage:
behaviorfield, typically toTestSuiteBehavior::Default(orSkippedfor the NS16550 suite as an example). [1] [2] [3] [4] [5] [6] [7] [8] [9] [10]Test suite registration refactor:
suitesmodule, simplifying the mainmod.rsand making suite management more maintainable. [1] [2]Code cleanup and style:
Documentation:
Other minor changes include updating the crate version in
Cargo.tomlto 0.3.2.