Skip to content

Commit a876a4d

Browse files
committedNov 2, 2022
Auto merge of #103857 - Manishearth:rollup-709fui6, r=Manishearth
Rollup of 8 pull requests Successful merges: - #103072 (compiletest: set the dylib path when gathering target cfg) - #103084 (Derive `Eq` and `Hash` for `ControlFlow`) - #103575 (Change #[suggestion_*] attributes to use style="...") - #103637 (Use stdio in UWP apps) - #103638 (Add `multivalue` target feature to WASM target) - #103781 (Detect unused files in `src/test/mir-opt` and error on them in tidy.) - #103837 (Migrate sidebar-links-color GUI test to functions) - #103839 (Print valid `--print` requests if request is invalid) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
2 parents 11ebe65 + c2affd5 commit a876a4d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+848
-1033
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",

0 commit comments

Comments
 (0)