Auto merge of #126542 - GuillaumeGomez:migrate-run-make-duplicate-out… · rust-lang/rust@f6236f6 (original) (raw)
File tree
3 files changed
lines changed
- tests/run-make/duplicate-output-flavors
3 files changed
lines changed
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -29,7 +29,6 @@ run-make/dep-info-spaces/Makefile | ||
29 | 29 | run-make/dep-info/Makefile |
30 | 30 | run-make/dump-ice-to-disk/Makefile |
31 | 31 | run-make/dump-mono-stats/Makefile |
32 | -run-make/duplicate-output-flavors/Makefile | |
33 | 32 | run-make/dylib-chain/Makefile |
34 | 33 | run-make/emit-path-unhashed/Makefile |
35 | 34 | run-make/emit-shared-files/Makefile |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
1 | +use run_make_support::rustc; | |
2 | + | |
3 | +fn main() { | |
4 | +rustc().input("foo.rs").crate_type("rlib").run(); | |
5 | +rustc().input("foo.rs").crate_type("rlib,rlib").run(); | |
6 | +} |