Skip to content

Commit

Permalink
Auto merge of rust-lang#126542 - GuillaumeGomez:migrate-run-make-dupl…
Browse files Browse the repository at this point in the history
…icate-output-flavors, r=Kobzol

Migrate `run-make/duplicate-output-flavors` to `rmake.rs`

Part of rust-lang#121876.

r? `@jieyouxu`
  • Loading branch information
bors committed Jun 16, 2024
2 parents 12b33d3 + ac751b3 commit f6236f6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
1 change: 0 additions & 1 deletion src/tools/tidy/src/allowed_run_make_makefiles.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ run-make/dep-info-spaces/Makefile
run-make/dep-info/Makefile
run-make/dump-ice-to-disk/Makefile
run-make/dump-mono-stats/Makefile
run-make/duplicate-output-flavors/Makefile
run-make/dylib-chain/Makefile
run-make/emit-path-unhashed/Makefile
run-make/emit-shared-files/Makefile
Expand Down
5 changes: 0 additions & 5 deletions tests/run-make/duplicate-output-flavors/Makefile

This file was deleted.

6 changes: 6 additions & 0 deletions tests/run-make/duplicate-output-flavors/rmake.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
use run_make_support::rustc;

fn main() {
rustc().input("foo.rs").crate_type("rlib").run();
rustc().input("foo.rs").crate_type("rlib,rlib").run();
}

0 comments on commit f6236f6

Please sign in to comment.