Skip to content

Commit 17395b4

Browse files
committed
Detect unused files in src/test/mir-opt and error on them in tidy.
1 parent 024207a commit 17395b4

17 files changed

+168
-496
lines changed

Cargo.lock

+9
Original file line numberDiff line numberDiff line change
@@ -816,6 +816,7 @@ dependencies = [
816816
"lazycell",
817817
"libc",
818818
"miow",
819+
"miropt-test-tools",
819820
"regex",
820821
"rustfix",
821822
"serde",
@@ -2268,6 +2269,13 @@ dependencies = [
22682269
"ui_test",
22692270
]
22702271

2272+
[[package]]
2273+
name = "miropt-test-tools"
2274+
version = "0.1.0"
2275+
dependencies = [
2276+
"regex",
2277+
]
2278+
22712279
[[package]]
22722280
name = "new_debug_unreachable"
22732281
version = "1.0.4"
@@ -4920,6 +4928,7 @@ version = "0.1.0"
49204928
dependencies = [
49214929
"cargo_metadata 0.14.0",
49224930
"lazy_static",
4931+
"miropt-test-tools",
49234932
"regex",
49244933
"walkdir",
49254934
]

Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ members = [
1111
"src/tools/error_index_generator",
1212
"src/tools/linkchecker",
1313
"src/tools/lint-docs",
14+
"src/tools/miropt-test-tools",
1415
"src/tools/rustbook",
1516
"src/tools/unstable-book-gen",
1617
"src/tools/tidy",

src/bootstrap/builder.rs

+1
Original file line numberDiff line numberDiff line change
@@ -622,6 +622,7 @@ impl<'a> Builder<'a> {
622622
check::Clippy,
623623
check::Miri,
624624
check::CargoMiri,
625+
check::MiroptTestTools,
625626
check::Rls,
626627
check::RustAnalyzer,
627628
check::Rustfmt,

src/bootstrap/check.rs

+1
Original file line numberDiff line numberDiff line change
@@ -460,6 +460,7 @@ tool_check_step!(Miri, "src/tools/miri", SourceType::InTree);
460460
tool_check_step!(CargoMiri, "src/tools/miri/cargo-miri", SourceType::InTree);
461461
tool_check_step!(Rls, "src/tools/rls", SourceType::InTree);
462462
tool_check_step!(Rustfmt, "src/tools/rustfmt", SourceType::InTree);
463+
tool_check_step!(MiroptTestTools, "src/tools/miropt-test-tools", SourceType::InTree);
463464

464465
tool_check_step!(Bootstrap, "src/bootstrap", SourceType::InTree, false);
465466

src/test/mir-opt/rustc.try_identity.DestinationPropagation.diff

-72
This file was deleted.

src/test/mir-opt/simplify_try.try_identity.DestinationPropagation.diff

-106
This file was deleted.

src/test/mir-opt/simplify_try.try_identity.SimplifyArmIdentity.diff

-85
This file was deleted.

0 commit comments

Comments
 (0)