Skip to content

Commit ac751b3

Browse files
Migrate run-make/duplicate-output-flavors to rmake.rs
1 parent 8217b41 commit ac751b3

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Diff for: src/tools/tidy/src/allowed_run_make_makefiles.txt

-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ run-make/dep-info-spaces/Makefile
3131
run-make/dep-info/Makefile
3232
run-make/dump-ice-to-disk/Makefile
3333
run-make/dump-mono-stats/Makefile
34-
run-make/duplicate-output-flavors/Makefile
3534
run-make/dylib-chain/Makefile
3635
run-make/emit-path-unhashed/Makefile
3736
run-make/emit-shared-files/Makefile

Diff for: tests/run-make/duplicate-output-flavors/Makefile

-5
This file was deleted.

Diff for: tests/run-make/duplicate-output-flavors/rmake.rs

+6
Original file line numberDiff line numberDiff 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+
}

0 commit comments

Comments
 (0)