File tree 2 files changed +38
-2
lines changed
src/cargo/ops/cargo_rustc
2 files changed +38
-2
lines changed Original file line number Diff line number Diff line change @@ -467,8 +467,10 @@ fn build_base_args(cx: &Context,
467
467
468
468
cmd. arg ( "--crate-name" ) . arg ( & unit. target . crate_name ( ) ) ;
469
469
470
- for crate_type in crate_types. iter ( ) {
471
- cmd. arg ( "--crate-type" ) . arg ( crate_type) ;
470
+ if !test {
471
+ for crate_type in crate_types. iter ( ) {
472
+ cmd. arg ( "--crate-type" ) . arg ( crate_type) ;
473
+ }
472
474
}
473
475
474
476
let prefer_dynamic = ( unit. target . for_host ( ) &&
@@ -515,6 +517,8 @@ fn build_base_args(cx: &Context,
515
517
516
518
if test && unit. target . harness ( ) {
517
519
cmd. arg ( "--test" ) ;
520
+ } else if test {
521
+ cmd. arg ( "--cfg" ) . arg ( "test" ) ;
518
522
}
519
523
520
524
if let Some ( features) = cx. resolve . features ( unit. pkg . package_id ( ) ) {
Original file line number Diff line number Diff line change @@ -2161,3 +2161,35 @@ fn test_panic_abort_with_dep() {
2161
2161
assert_that ( p. cargo_process ( "test" ) . arg ( "-v" ) ,
2162
2162
execs ( ) . with_status ( 0 ) ) ;
2163
2163
}
2164
+
2165
+ #[ test]
2166
+ fn cfg_test_even_with_no_harness ( ) {
2167
+ if !is_nightly ( ) {
2168
+ return
2169
+ }
2170
+ let p = project ( "foo" )
2171
+ . file ( "Cargo.toml" , r#"
2172
+ [package]
2173
+ name = "foo"
2174
+ version = "0.0.1"
2175
+ authors = []
2176
+
2177
+ [lib]
2178
+ harness = false
2179
+ doctest = false
2180
+ "# )
2181
+ . file ( "src/lib.rs" , r#"
2182
+ #[cfg(test)]
2183
+ fn main() {
2184
+ println!("hello!");
2185
+ }
2186
+ "# ) ;
2187
+ assert_that ( p. cargo_process ( "test" ) . arg ( "-v" ) ,
2188
+ execs ( ) . with_status ( 0 )
2189
+ . with_stdout ( "hello!\n " )
2190
+ . with_stderr ( "\
2191
+ [COMPILING] foo v0.0.1 ([..])
2192
+ [RUNNING] `rustc [..]`
2193
+ [RUNNING] `[..]`
2194
+ " ) ) ;
2195
+ }
You can’t perform that action at this time.
0 commit comments