Add cargo miri to x.py check

This commit is contained in:
Oli Scherer 2022-10-26 10:28:27 +00:00
parent c4b9b6532b
commit f882309f4d
2 changed files with 2 additions and 0 deletions

View File

@ -621,6 +621,7 @@ macro_rules! describe {
check::CodegenBackend,
check::Clippy,
check::Miri,
check::CargoMiri,
check::Rls,
check::RustAnalyzer,
check::Rustfmt,

View File

@ -457,6 +457,7 @@ fn stamp(
// rejected.
tool_check_step!(Clippy, "src/tools/clippy", SourceType::InTree);
tool_check_step!(Miri, "src/tools/miri", SourceType::InTree);
tool_check_step!(CargoMiri, "src/tools/miri/cargo-miri", SourceType::InTree);
tool_check_step!(Rls, "src/tools/rls", SourceType::InTree);
tool_check_step!(Rustfmt, "src/tools/rustfmt", SourceType::InTree);