@@ -30,6 +30,7 @@ fn build_lib_for_foo() {
30
30
. with_stderr ( format ! ( "\
31
31
[COMPILING] foo v0.0.1 ({url})
32
32
[RUNNING] `rustc src{sep}lib.rs --crate-name foo --crate-type lib -g \
33
+ -C metadata=[..] \
33
34
--out-dir [..] \
34
35
--emit=dep-info,link \
35
36
-L dependency={dir}{sep}target{sep}debug{sep}deps`
@@ -60,6 +61,7 @@ fn lib() {
60
61
[COMPILING] foo v0.0.1 ({url})
61
62
[RUNNING] `rustc src{sep}lib.rs --crate-name foo --crate-type lib -g \
62
63
-C debug-assertions=off \
64
+ -C metadata=[..] \
63
65
--out-dir [..] \
64
66
--emit=dep-info,link \
65
67
-L dependency={dir}{sep}target{sep}debug{sep}deps`
@@ -89,11 +91,13 @@ fn build_main_and_allow_unstable_options() {
89
91
. with_stderr ( & format ! ( "\
90
92
[COMPILING] {name} v{version} ({url})
91
93
[RUNNING] `rustc src{sep}lib.rs --crate-name {name} --crate-type lib -g \
94
+ -C metadata=[..] \
92
95
--out-dir [..] \
93
96
--emit=dep-info,link \
94
97
-L dependency={dir}{sep}target{sep}debug{sep}deps`
95
98
[RUNNING] `rustc src{sep}main.rs --crate-name {name} --crate-type bin -g \
96
99
-C debug-assertions \
100
+ -C metadata=[..] \
97
101
--out-dir [..] \
98
102
--emit=dep-info,link \
99
103
-L dependency={dir}{sep}target{sep}debug{sep}deps \
@@ -152,6 +156,7 @@ fn build_with_args_to_one_of_multiple_binaries() {
152
156
. with_stderr ( format ! ( "\
153
157
[COMPILING] foo v0.0.1 ({url})
154
158
[RUNNING] `rustc src{sep}lib.rs --crate-name foo --crate-type lib -g \
159
+ -C metadata=[..] \
155
160
--out-dir [..]`
156
161
[RUNNING] `rustc src{sep}bin{sep}bar.rs --crate-name bar --crate-type bin -g \
157
162
-C debug-assertions [..]`
@@ -207,6 +212,7 @@ fn build_with_args_to_one_of_multiple_tests() {
207
212
. with_stderr ( format ! ( "\
208
213
[COMPILING] foo v0.0.1 ({url})
209
214
[RUNNING] `rustc src{sep}lib.rs --crate-name foo --crate-type lib -g \
215
+ -C metadata=[..] \
210
216
--out-dir [..]`
211
217
[RUNNING] `rustc tests{sep}bar.rs --crate-name bar -g \
212
218
-C debug-assertions [..]--test[..]`
0 commit comments