Skip to content

Commit 3fe50e1

Browse files
authored
Auto merge of #3021 - alexcrichton:test-release-panic-abort, r=brson
Fix transitive doctests panic=abort Ensure that when we compile doctested libraries or examples we use the same panic mode as the rest of the tests, namely ignoring panic=abort b/c libtest isn't compiled with panic=abort. Closes #3017
2 parents b0ce1d8 + 23498ec commit 3fe50e1

File tree

2 files changed

+37
-2
lines changed

2 files changed

+37
-2
lines changed

src/cargo/ops/cargo_compile.rs

+7-2
Original file line numberDiff line numberDiff line change
@@ -308,17 +308,22 @@ fn generate_targets<'a>(pkg: &'a Package,
308308
}).collect::<Vec<_>>())
309309
}
310310
CompileMode::Test => {
311+
let deps = if release {
312+
&profiles.bench_deps
313+
} else {
314+
&profiles.test_deps
315+
};
311316
let mut base = pkg.targets().iter().filter(|t| {
312317
t.tested()
313318
}).map(|t| {
314-
(t, if t.is_example() {build} else {profile})
319+
(t, if t.is_example() {deps} else {profile})
315320
}).collect::<Vec<_>>();
316321

317322
// Always compile the library if we're testing everything as
318323
// it'll be needed for doctests
319324
if let Some(t) = pkg.targets().iter().find(|t| t.is_lib()) {
320325
if t.doctested() {
321-
base.push((t, build));
326+
base.push((t, deps));
322327
}
323328
}
324329
Ok(base)

tests/test.rs

+30
Original file line numberDiff line numberDiff line change
@@ -2232,3 +2232,33 @@ fn cfg_test_even_with_no_harness() {
22322232
[RUNNING] `[..]`
22332233
"));
22342234
}
2235+
2236+
#[test]
2237+
fn panic_abort_multiple() {
2238+
let p = project("foo")
2239+
.file("Cargo.toml", r#"
2240+
[package]
2241+
name = "foo"
2242+
version = "0.0.1"
2243+
authors = []
2244+
2245+
[dependencies]
2246+
a = { path = "a" }
2247+
2248+
[profile.release]
2249+
panic = 'abort'
2250+
"#)
2251+
.file("src/lib.rs", "extern crate a;")
2252+
.file("a/Cargo.toml", r#"
2253+
[package]
2254+
name = "a"
2255+
version = "0.0.1"
2256+
authors = []
2257+
"#)
2258+
.file("a/src/lib.rs", "");
2259+
assert_that(p.cargo_process("test")
2260+
.arg("--release").arg("-v")
2261+
.arg("-p").arg("foo")
2262+
.arg("-p").arg("a"),
2263+
execs().with_status(0));
2264+
}

0 commit comments

Comments
 (0)