Skip to content

Commit 0f44202

Browse files
committed
Ignore panic configuration for test/bench profiles
Both of these profiles link to libtest, so it's invalid to configure them with `panic="abort"`. To prevent confusing errors just ignore the configuration for now. Closes #3166
1 parent eca9e15 commit 0f44202

File tree

3 files changed

+37
-1
lines changed

3 files changed

+37
-1
lines changed

src/cargo/ops/cargo_compile.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ pub fn compile_ws<'a>(ws: &Workspace<'a>,
245245
let _p = profile::start("compiling");
246246
let mut build_config = try!(scrape_build_config(config, jobs, target));
247247
build_config.release = release;
248-
build_config.test = mode == CompileMode::Test;
248+
build_config.test = mode == CompileMode::Test || mode == CompileMode::Bench;
249249
build_config.json_errors = message_format == MessageFormat::Json;
250250
if let CompileMode::Doc { deps } = mode {
251251
build_config.doc_all = deps;

src/cargo/util/toml.rs

+4
Original file line numberDiff line numberDiff line change
@@ -1239,6 +1239,10 @@ fn build_profiles(profiles: &Option<TomlProfiles>) -> Profiles {
12391239
profiles.and_then(|p| p.doc.as_ref())),
12401240
custom_build: Profile::default_custom_build(),
12411241
};
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;
12421246
profiles.test_deps.panic = None;
12431247
profiles.bench_deps.panic = None;
12441248
return profiles;

tests/test.rs

+32
Original file line numberDiff line numberDiff line change
@@ -2332,3 +2332,35 @@ fn pass_correct_cfgs_flags_to_rustdoc() {
23322332
[DOCTEST] foo
23332333
[RUNNING] `rustdoc --test [..]feature_a[..]`"));
23342334
}
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+
}

0 commit comments

Comments
 (0)