File tree 3 files changed +37
-1
lines changed
3 files changed +37
-1
lines changed Original file line number Diff line number Diff line change @@ -245,7 +245,7 @@ pub fn compile_ws<'a>(ws: &Workspace<'a>,
245
245
let _p = profile:: start ( "compiling" ) ;
246
246
let mut build_config = try!( scrape_build_config ( config, jobs, target) ) ;
247
247
build_config. release = release;
248
- build_config. test = mode == CompileMode :: Test ;
248
+ build_config. test = mode == CompileMode :: Test || mode == CompileMode :: Bench ;
249
249
build_config. json_errors = message_format == MessageFormat :: Json ;
250
250
if let CompileMode :: Doc { deps } = mode {
251
251
build_config. doc_all = deps;
Original file line number Diff line number Diff line change @@ -1239,6 +1239,10 @@ fn build_profiles(profiles: &Option<TomlProfiles>) -> Profiles {
1239
1239
profiles. and_then ( |p| p. doc . as_ref ( ) ) ) ,
1240
1240
custom_build : Profile :: default_custom_build ( ) ,
1241
1241
} ;
1242
+ // The test/bench targets cannot have panic=abort because they'll all get
1243
+ // compiled with --test which requires the unwind runtime currently
1244
+ profiles. test . panic = None ;
1245
+ profiles. bench . panic = None ;
1242
1246
profiles. test_deps . panic = None ;
1243
1247
profiles. bench_deps . panic = None ;
1244
1248
return profiles;
Original file line number Diff line number Diff line change @@ -2332,3 +2332,35 @@ fn pass_correct_cfgs_flags_to_rustdoc() {
2332
2332
[DOCTEST] foo
2333
2333
[RUNNING] `rustdoc --test [..]feature_a[..]`" ) ) ;
2334
2334
}
2335
+
2336
+ #[ test]
2337
+ fn test_release_ignore_panic ( ) {
2338
+ let p = project ( "foo" )
2339
+ . file ( "Cargo.toml" , r#"
2340
+ [package]
2341
+ name = "foo"
2342
+ version = "0.0.1"
2343
+ authors = []
2344
+
2345
+ [dependencies]
2346
+ a = { path = "a" }
2347
+
2348
+ [profile.test]
2349
+ panic = 'abort'
2350
+ [profile.release]
2351
+ panic = 'abort'
2352
+ "# )
2353
+ . file ( "src/lib.rs" , "extern crate a;" )
2354
+ . file ( "a/Cargo.toml" , r#"
2355
+ [package]
2356
+ name = "a"
2357
+ version = "0.0.1"
2358
+ authors = []
2359
+ "# )
2360
+ . file ( "a/src/lib.rs" , "" ) ;
2361
+ p. build ( ) ;
2362
+ println ! ( "test" ) ;
2363
+ assert_that ( p. cargo ( "test" ) . arg ( "-v" ) , execs ( ) . with_status ( 0 ) ) ;
2364
+ println ! ( "bench" ) ;
2365
+ assert_that ( p. cargo ( "bench" ) . arg ( "-v" ) , execs ( ) . with_status ( 0 ) ) ;
2366
+ }
You can’t perform that action at this time.
0 commit comments