Fix CLI completion check in tidy#143452
Merged
bors merged 2 commits intorust-lang:masterfrom Jul 5, 2025
Merged
Conversation
Collaborator
|
This PR modifies If appropriate, please update |
This comment has been minimized.
This comment has been minimized.
Member
Author
Funny, clippy didn't detect this when it was inside a macro. |
Member
Aren't many lints intentionally not fired against code whose span comes from macro expansions? Anyway |
Member
|
@bors r+ rollup |
Collaborator
bors
added a commit
that referenced
this pull request
Jul 5, 2025
Rollup of 11 pull requests Successful merges: - #142440 (`tests/ui`: A New Order [14/N]) - #143040 (Add `const Rem`) - #143086 (Update poison.rs to fix the typo (sys->sync)) - #143202 (`tests/ui`: A New Order [18/N]) - #143296 (`tests/ui`: A New Order [21/N]) - #143297 (`tests/ui`: A New Order [22/N]) - #143299 (`tests/ui`: A New Order [24/N]) - #143300 (`tests/ui`: A New Order [25/N]) - #143397 (test passing a `VaList` from rust to C) - #143410 (Block SIMD in transmute_immediate; delete `OperandValueKind`) - #143452 (Fix CLI completion check in `tidy`) r? `@ghost` `@rustbot` modify labels: rollup
rust-timer
added a commit
that referenced
this pull request
Jul 5, 2025
Rollup merge of #143452 - Kobzol:completions-fix, r=jieyouxu Fix CLI completion check in `tidy` The list of CLI completion files that were generated and that were checked by `x test tidy` was not synced. Recently, some PR only updated some of the files, which caused the rest of the files (not checked by `x test tidy`) to be dirty on `master`. This PR fixes the logic in bootstrap to always synchronize the list of completion paths. Fixes: #143451 r? `@jieyouxu`
Contributor
|
Sorry, i've updated only ones that caused build or tidy fails. |
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.
The list of CLI completion files that were generated and that were checked by
x test tidywas not synced. Recently, some PR only updated some of the files, which caused the rest of the files (not checked byx test tidy) to be dirty onmaster. This PR fixes the logic in bootstrap to always synchronize the list of completion paths.Fixes: #143451
r? @jieyouxu