-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Greatly speed up doctests by compiling compatible doctests in one file #126245
Merged
bors
merged 48 commits into
rust-lang:master
from
GuillaumeGomez:doctest-improvement-v2
Aug 14, 2024
Merged
Changes from all commits
Commits
Show all changes
48 commits
Select commit
Hold shift + click to select a range
05fbfde
Clean up rustdoc make_test function code
GuillaumeGomez 5e24437
Add `DocTest` type
GuillaumeGomez 7d72482
Simplify doctest tests
GuillaumeGomez 39f029a
Split doctests between standalone and mergeable ones
GuillaumeGomez 96051f2
Split standalone and mergeable doctests
GuillaumeGomez 6ae3524
Split doctests into two categories: mergeable ones and standalone ones
GuillaumeGomez 58cd70e
Only merge doctests starting 2024 edition
GuillaumeGomez 3147520
Add new doc codeblock `standalone` attribute
GuillaumeGomez 23badff
Add documentation for the doctest `standalone` attribute
GuillaumeGomez b7079c5
Prevent merged doctests to break stdin if the generated file is too big
GuillaumeGomez a0ae8ac
If there is any AST error with a doctest, we make it a standalone test
GuillaumeGomez 59a9e09
Correctly handle the case where there is no doctests to run
GuillaumeGomez 7ec3cab
Correctly handle doctests with invalid AST
GuillaumeGomez 2fd8d1c
Add/update `rustdoc-ui` tests to check new merged doctests
GuillaumeGomez 010731d
Add new `run-make` tests for doctests
GuillaumeGomez 03118fa
Simplify `has_main_fn` to be a boolean instead of a `Option<Span>`
GuillaumeGomez 6eabffb
Greatly improve handling of doctests attributes, making it possible t…
GuillaumeGomez b6831bb
Don't merge doctests with `#[global_allocator]`
GuillaumeGomez dcc77b4
Fix weird memory allocation failure in merged doctests by storing doc…
GuillaumeGomez 0f0681e
Make merged doctests run in their own process
GuillaumeGomez 995858e
Don't change indent in merged doctests
GuillaumeGomez 475824d
Mark location doctest as standalone since file information will not w…
GuillaumeGomez ec4d910
Correctly handle `internal_features` attribute
GuillaumeGomez c5ae545
If no argument is provided to merged doctests binary, they will be ru…
GuillaumeGomez 0bd2c99
Only show rustdoc doctest compilation output if `nocapture` is used
GuillaumeGomez 112e447
Disable merged doctests by default
GuillaumeGomez 14f80f9
Correctly handle macros using `$crate` in merged doctests
GuillaumeGomez 84d9b67
Add 2024 edition doctests to cover corner cases
GuillaumeGomez 6d552ba
Improve code by removing unneeded function arguments
GuillaumeGomez bfabf1d
Add documentation on `DocTest` and `RunnableDoctest` structs
GuillaumeGomez d512438
Run mergeable doctest as part of standalone doctests if there is only…
GuillaumeGomez 1e1743a
Reduce merged doctest source code size
GuillaumeGomez ffc18c5
Rename `DocTest` into `DocTestBuilder`
GuillaumeGomez 0fbc32c
If there are crate attributes, we prevent doctest to be merged with o…
GuillaumeGomez a3bc2c7
Improve code readability
GuillaumeGomez 72aeffa
Remove need for `unsafe` code in merged doctests
GuillaumeGomez 4b1db07
Don't special-case if there is only one merged doctest
GuillaumeGomez ab3d90e
Unify naming of `DocTest`
GuillaumeGomez baf8ce8
Move `is_multiple_tests` argument into `RunnableDocTest`
GuillaumeGomez c9f730e
Improve documentation for internal doctest API
GuillaumeGomez cbf6fe0
Add more merged doctests tests
GuillaumeGomez 7dcb841
Add doctest to ensure that doctests with crate-level attributes are n…
GuillaumeGomez 903d2db
Only keep "useful" code in `tests/rustdoc-ui/2024-doctests-checks.rs`
GuillaumeGomez a708d0b
Fix commands syntax in rustdoc-ui tests
GuillaumeGomez f1c1c49
Run fmt
GuillaumeGomez 488614d
Update `tests/run-make/doctests-keep-binaries-2024/rmake.rs` test to …
GuillaumeGomez 1d75f78
Ignore cross compile check for `tests/run-make/doctests-keep-binaries…
GuillaumeGomez 05fb8ff
Fix intra-doc link
GuillaumeGomez File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Oops, something went wrong.
Oops, something went wrong.
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.
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.
Is libtest considered perma-unstable? Just want to make sure we're not affecting the public API. Either way, we should probably have some from T-libs sign-off on this change.
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.
Per @Amanieu and @thomcc, libtest is neither stable nor intended to be stable.
I believe that should be sufficient given that these remarks reflect an existing consensus.