File tree Expand file tree Collapse file tree 3 files changed +13
-8
lines changed
tests/run-make/multiple-emits Expand file tree Collapse file tree 3 files changed +13
-8
lines changed Original file line number Diff line number Diff line change @@ -145,7 +145,6 @@ run-make/mismatching-target-triples/Makefile
145
145
run-make/missing-crate-dependency/Makefile
146
146
run-make/mixing-libs/Makefile
147
147
run-make/msvc-opt-minsize/Makefile
148
- run-make/multiple-emits/Makefile
149
148
run-make/native-link-modifier-bundle/Makefile
150
149
run-make/native-link-modifier-verbatim-linker/Makefile
151
150
run-make/native-link-modifier-verbatim-rustc/Makefile
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ use run_make_support:: { cwd, rustc} ;
2
+
3
+ fn main ( ) {
4
+ rustc ( ) . input ( "foo.rs" ) . emit ( "asm,llvm-ir" ) . output ( cwd ( ) . join ( "out" ) ) . run ( ) ;
5
+
6
+ assert ! ( cwd( ) . join( "out.ll" ) . is_file( ) ) ;
7
+ assert ! ( cwd( ) . join( "out.s" ) . is_file( ) ) ;
8
+
9
+ rustc ( ) . input ( "foo.rs" ) . emit ( "asm,llvm-ir" ) . output ( cwd ( ) . join ( "out2.ext" ) ) . run ( ) ;
10
+
11
+ assert ! ( cwd( ) . join( "out2.ll" ) . is_file( ) ) ;
12
+ assert ! ( cwd( ) . join( "out2.s" ) . is_file( ) ) ;
13
+ }
You can’t perform that action at this time.
0 commit comments