mirror of
https://github.com/rust-lang/cargo.git
synced 2025-10-01 11:30:39 +00:00
Add support for -Cembed-bitcode=no
This commit is the Cargo half of support necessary for rust-lang/rust#70458. Today the compiler emits embedded bytecode in rlibs by default, but compresses it. This is both extraneous disk space and wasted build time for almost all builds, so the PR in question there is changing rustc to have a `-Cembed-bitcode` flag which, when enabled, places the bitcode in the object file rather than an auxiliary file (no extra compression), but also enables `-Cembed-bitcode=no` to disable bitcode emission entirely. This Cargo support changes Cargo to pass `-Cembed-bitcode=no` for almost all compilations. Cargo will keep `lto = true` and such working by not passing this flag (and thus allowing bitcode to get embedded), but by default `cargo build` and `cargo build --release` will no longer have any bitcode in rlibs which should result in speedier builds! Most of the changes here were around the test suite and various assertions about the `rustc` command lines we spit out. One test was hard-disabled until we can get `-Cembed-bitcode=no` into nightly, and then we can make it a nightly-only test. The test will then be stable again once `-Cembed-bitcode=no` hits stable. Note that this is intended to land before the upstream `-Cembed-bitcode` change. The thinking is that we'll land everything in rust-lang/rust all at once so there's no build time regressions for anyone. If we were to land the `-Cembed-bitcode` PR first then there would be a build time regression until we land Cargo changes because rustc would be emitting uncompressed bitcode by default and Cargo wouldn't be turning it off.
This commit is contained in:
parent
c75216fc55
commit
bac300bda0
@ -1230,6 +1230,14 @@ impl Execs {
|
|||||||
}
|
}
|
||||||
MatchKind::Unordered => {
|
MatchKind::Unordered => {
|
||||||
let mut a = actual.lines().collect::<Vec<_>>();
|
let mut a = actual.lines().collect::<Vec<_>>();
|
||||||
|
// match more-constrained lines first, although in theory we'll
|
||||||
|
// need some sort of recursive match here. This handles the case
|
||||||
|
// that you expect "a\n[..]b" and two lines are printed out,
|
||||||
|
// "ab\n"a", where technically we do match unordered but a naive
|
||||||
|
// search fails to find this. This simple sort at least gets the
|
||||||
|
// test suite to pass for now, but we may need to get more fancy
|
||||||
|
// if tests start failing again.
|
||||||
|
a.sort_by_key(|s| s.len());
|
||||||
let e = out.lines();
|
let e = out.lines();
|
||||||
|
|
||||||
for e_line in e {
|
for e_line in e {
|
||||||
|
@ -41,6 +41,8 @@ pub struct TargetInfo {
|
|||||||
pub rustflags: Vec<String>,
|
pub rustflags: Vec<String>,
|
||||||
/// Extra flags to pass to `rustdoc`, see `env_args`.
|
/// Extra flags to pass to `rustdoc`, see `env_args`.
|
||||||
pub rustdocflags: Vec<String>,
|
pub rustdocflags: Vec<String>,
|
||||||
|
/// REmove this when it hits stable (1.44)
|
||||||
|
pub supports_embed_bitcode: Option<bool>,
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Kind of each file generated by a Unit, part of `FileType`.
|
/// Kind of each file generated by a Unit, part of `FileType`.
|
||||||
@ -103,6 +105,13 @@ impl TargetInfo {
|
|||||||
.args(&rustflags)
|
.args(&rustflags)
|
||||||
.env_remove("RUSTC_LOG");
|
.env_remove("RUSTC_LOG");
|
||||||
|
|
||||||
|
let mut embed_bitcode_test = process.clone();
|
||||||
|
embed_bitcode_test.arg("-Cembed-bitcode");
|
||||||
|
let supports_embed_bitcode = match kind {
|
||||||
|
CompileKind::Host => Some(rustc.cached_output(&embed_bitcode_test).is_ok()),
|
||||||
|
_ => None,
|
||||||
|
};
|
||||||
|
|
||||||
if let CompileKind::Target(target) = kind {
|
if let CompileKind::Target(target) = kind {
|
||||||
process.arg("--target").arg(target.rustc_target());
|
process.arg("--target").arg(target.rustc_target());
|
||||||
}
|
}
|
||||||
@ -187,6 +196,7 @@ impl TargetInfo {
|
|||||||
"RUSTDOCFLAGS",
|
"RUSTDOCFLAGS",
|
||||||
)?,
|
)?,
|
||||||
cfg,
|
cfg,
|
||||||
|
supports_embed_bitcode,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -801,16 +801,32 @@ fn build_base_args<'a, 'cfg>(
|
|||||||
|
|
||||||
// Disable LTO for host builds as prefer_dynamic and it are mutually
|
// Disable LTO for host builds as prefer_dynamic and it are mutually
|
||||||
// exclusive.
|
// exclusive.
|
||||||
if unit.target.can_lto() && !unit.target.for_host() {
|
let lto_possible = unit.target.can_lto() && !unit.target.for_host();
|
||||||
match *lto {
|
match lto {
|
||||||
Lto::Bool(false) => {}
|
|
||||||
Lto::Bool(true) => {
|
Lto::Bool(true) => {
|
||||||
|
if lto_possible {
|
||||||
cmd.args(&["-C", "lto"]);
|
cmd.args(&["-C", "lto"]);
|
||||||
}
|
}
|
||||||
Lto::Named(ref s) => {
|
}
|
||||||
|
Lto::Named(s) => {
|
||||||
|
if lto_possible {
|
||||||
cmd.arg("-C").arg(format!("lto={}", s));
|
cmd.arg("-C").arg(format!("lto={}", s));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// If LTO isn't being enabled then there's no need for bitcode to be
|
||||||
|
// present in the intermediate artifacts, so shave off some build time
|
||||||
|
// by removing it.
|
||||||
|
Lto::Bool(false) => {
|
||||||
|
if cx
|
||||||
|
.bcx
|
||||||
|
.target_data
|
||||||
|
.info(CompileKind::Host)
|
||||||
|
.supports_embed_bitcode
|
||||||
|
.unwrap()
|
||||||
|
{
|
||||||
|
cmd.arg("-Cembed-bitcode=no");
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if let Some(n) = codegen_units {
|
if let Some(n) = codegen_units {
|
||||||
|
@ -1149,13 +1149,13 @@ fn cargo_default_env_metadata_env_var() {
|
|||||||
[COMPILING] bar v0.0.1 ([CWD]/bar)
|
[COMPILING] bar v0.0.1 ([CWD]/bar)
|
||||||
[RUNNING] `rustc --crate-name bar bar/src/lib.rs [..]--crate-type dylib \
|
[RUNNING] `rustc --crate-name bar bar/src/lib.rs [..]--crate-type dylib \
|
||||||
--emit=[..]link \
|
--emit=[..]link \
|
||||||
-C prefer-dynamic -C debuginfo=2 \
|
-C prefer-dynamic[..]-C debuginfo=2 \
|
||||||
-C metadata=[..] \
|
-C metadata=[..] \
|
||||||
--out-dir [..] \
|
--out-dir [..] \
|
||||||
-L dependency=[CWD]/target/debug/deps`
|
-L dependency=[CWD]/target/debug/deps`
|
||||||
[COMPILING] foo v0.0.1 ([CWD])
|
[COMPILING] foo v0.0.1 ([CWD])
|
||||||
[RUNNING] `rustc --crate-name foo src/lib.rs [..]--crate-type lib \
|
[RUNNING] `rustc --crate-name foo src/lib.rs [..]--crate-type lib \
|
||||||
--emit=[..]link -C debuginfo=2 \
|
--emit=[..]link[..]-C debuginfo=2 \
|
||||||
-C metadata=[..] \
|
-C metadata=[..] \
|
||||||
-C extra-filename=[..] \
|
-C extra-filename=[..] \
|
||||||
--out-dir [..] \
|
--out-dir [..] \
|
||||||
@ -1177,13 +1177,13 @@ fn cargo_default_env_metadata_env_var() {
|
|||||||
[COMPILING] bar v0.0.1 ([CWD]/bar)
|
[COMPILING] bar v0.0.1 ([CWD]/bar)
|
||||||
[RUNNING] `rustc --crate-name bar bar/src/lib.rs [..]--crate-type dylib \
|
[RUNNING] `rustc --crate-name bar bar/src/lib.rs [..]--crate-type dylib \
|
||||||
--emit=[..]link \
|
--emit=[..]link \
|
||||||
-C prefer-dynamic -C debuginfo=2 \
|
-C prefer-dynamic[..]-C debuginfo=2 \
|
||||||
-C metadata=[..] \
|
-C metadata=[..] \
|
||||||
--out-dir [..] \
|
--out-dir [..] \
|
||||||
-L dependency=[CWD]/target/debug/deps`
|
-L dependency=[CWD]/target/debug/deps`
|
||||||
[COMPILING] foo v0.0.1 ([CWD])
|
[COMPILING] foo v0.0.1 ([CWD])
|
||||||
[RUNNING] `rustc --crate-name foo src/lib.rs [..]--crate-type lib \
|
[RUNNING] `rustc --crate-name foo src/lib.rs [..]--crate-type lib \
|
||||||
--emit=[..]link -C debuginfo=2 \
|
--emit=[..]link[..]-C debuginfo=2 \
|
||||||
-C metadata=[..] \
|
-C metadata=[..] \
|
||||||
-C extra-filename=[..] \
|
-C extra-filename=[..] \
|
||||||
--out-dir [..] \
|
--out-dir [..] \
|
||||||
@ -1581,7 +1581,7 @@ fn verbose_build() {
|
|||||||
"\
|
"\
|
||||||
[COMPILING] foo v0.0.1 ([CWD])
|
[COMPILING] foo v0.0.1 ([CWD])
|
||||||
[RUNNING] `rustc --crate-name foo src/lib.rs [..]--crate-type lib \
|
[RUNNING] `rustc --crate-name foo src/lib.rs [..]--crate-type lib \
|
||||||
--emit=[..]link -C debuginfo=2 \
|
--emit=[..]link[..]-C debuginfo=2 \
|
||||||
-C metadata=[..] \
|
-C metadata=[..] \
|
||||||
--out-dir [..] \
|
--out-dir [..] \
|
||||||
-L dependency=[CWD]/target/debug/deps`
|
-L dependency=[CWD]/target/debug/deps`
|
||||||
@ -1599,8 +1599,8 @@ fn verbose_release_build() {
|
|||||||
"\
|
"\
|
||||||
[COMPILING] foo v0.0.1 ([CWD])
|
[COMPILING] foo v0.0.1 ([CWD])
|
||||||
[RUNNING] `rustc --crate-name foo src/lib.rs [..]--crate-type lib \
|
[RUNNING] `rustc --crate-name foo src/lib.rs [..]--crate-type lib \
|
||||||
--emit=[..]link \
|
--emit=[..]link[..]\
|
||||||
-C opt-level=3 \
|
-C opt-level=3[..]\
|
||||||
-C metadata=[..] \
|
-C metadata=[..] \
|
||||||
--out-dir [..] \
|
--out-dir [..] \
|
||||||
-L dependency=[CWD]/target/release/deps`
|
-L dependency=[CWD]/target/release/deps`
|
||||||
@ -1650,15 +1650,15 @@ fn verbose_release_build_deps() {
|
|||||||
[RUNNING] `rustc --crate-name foo foo/src/lib.rs [..]\
|
[RUNNING] `rustc --crate-name foo foo/src/lib.rs [..]\
|
||||||
--crate-type dylib --crate-type rlib \
|
--crate-type dylib --crate-type rlib \
|
||||||
--emit=[..]link \
|
--emit=[..]link \
|
||||||
-C prefer-dynamic \
|
-C prefer-dynamic[..]\
|
||||||
-C opt-level=3 \
|
-C opt-level=3[..]\
|
||||||
-C metadata=[..] \
|
-C metadata=[..] \
|
||||||
--out-dir [..] \
|
--out-dir [..] \
|
||||||
-L dependency=[CWD]/target/release/deps`
|
-L dependency=[CWD]/target/release/deps`
|
||||||
[COMPILING] test v0.0.0 ([CWD])
|
[COMPILING] test v0.0.0 ([CWD])
|
||||||
[RUNNING] `rustc --crate-name test src/lib.rs [..]--crate-type lib \
|
[RUNNING] `rustc --crate-name test src/lib.rs [..]--crate-type lib \
|
||||||
--emit=[..]link \
|
--emit=[..]link[..]\
|
||||||
-C opt-level=3 \
|
-C opt-level=3[..]\
|
||||||
-C metadata=[..] \
|
-C metadata=[..] \
|
||||||
--out-dir [..] \
|
--out-dir [..] \
|
||||||
-L dependency=[CWD]/target/release/deps \
|
-L dependency=[CWD]/target/release/deps \
|
||||||
@ -4205,15 +4205,15 @@ fn build_filter_infer_profile() {
|
|||||||
p.cargo("build -v --test=t1")
|
p.cargo("build -v --test=t1")
|
||||||
.with_stderr_contains(
|
.with_stderr_contains(
|
||||||
"[RUNNING] `rustc --crate-name foo src/lib.rs [..]--crate-type lib \
|
"[RUNNING] `rustc --crate-name foo src/lib.rs [..]--crate-type lib \
|
||||||
--emit=[..]link -C debuginfo=2 [..]",
|
--emit=[..]link[..]-C debuginfo=2 [..]",
|
||||||
)
|
)
|
||||||
.with_stderr_contains(
|
.with_stderr_contains(
|
||||||
"[RUNNING] `rustc --crate-name t1 tests/t1.rs [..]--emit=[..]link \
|
"[RUNNING] `rustc --crate-name t1 tests/t1.rs [..]--emit=[..]link[..]\
|
||||||
-C debuginfo=2 [..]",
|
-C debuginfo=2 [..]",
|
||||||
)
|
)
|
||||||
.with_stderr_contains(
|
.with_stderr_contains(
|
||||||
"[RUNNING] `rustc --crate-name foo src/main.rs [..]--crate-type bin \
|
"[RUNNING] `rustc --crate-name foo src/main.rs [..]--crate-type bin \
|
||||||
--emit=[..]link -C debuginfo=2 [..]",
|
--emit=[..]link[..]-C debuginfo=2 [..]",
|
||||||
)
|
)
|
||||||
.run();
|
.run();
|
||||||
|
|
||||||
@ -4222,16 +4222,16 @@ fn build_filter_infer_profile() {
|
|||||||
p.cargo("build -v --bench=b1")
|
p.cargo("build -v --bench=b1")
|
||||||
.with_stderr_contains(
|
.with_stderr_contains(
|
||||||
"[RUNNING] `rustc --crate-name foo src/lib.rs [..]--crate-type lib \
|
"[RUNNING] `rustc --crate-name foo src/lib.rs [..]--crate-type lib \
|
||||||
--emit=[..]link -C debuginfo=2 [..]",
|
--emit=[..]link[..]-C debuginfo=2 [..]",
|
||||||
)
|
)
|
||||||
.with_stderr_contains(
|
.with_stderr_contains(
|
||||||
"[RUNNING] `rustc --crate-name b1 benches/b1.rs [..]--emit=[..]link \
|
"[RUNNING] `rustc --crate-name b1 benches/b1.rs [..]--emit=[..]link[..]\
|
||||||
-C debuginfo=2 [..]",
|
-C debuginfo=2 [..]",
|
||||||
)
|
)
|
||||||
.with_stderr_does_not_contain("opt-level")
|
.with_stderr_does_not_contain("opt-level")
|
||||||
.with_stderr_contains(
|
.with_stderr_contains(
|
||||||
"[RUNNING] `rustc --crate-name foo src/main.rs [..]--crate-type bin \
|
"[RUNNING] `rustc --crate-name foo src/main.rs [..]--crate-type bin \
|
||||||
--emit=[..]link -C debuginfo=2 [..]",
|
--emit=[..]link[..]-C debuginfo=2 [..]",
|
||||||
)
|
)
|
||||||
.run();
|
.run();
|
||||||
}
|
}
|
||||||
@ -4252,7 +4252,7 @@ fn targets_selected_default() {
|
|||||||
)
|
)
|
||||||
// Unit tests.
|
// Unit tests.
|
||||||
.with_stderr_does_not_contain(
|
.with_stderr_does_not_contain(
|
||||||
"[RUNNING] `rustc --crate-name foo src/main.rs [..]--emit=[..]link \
|
"[RUNNING] `rustc --crate-name foo src/main.rs [..]--emit=[..]link[..]\
|
||||||
-C debuginfo=2 --test [..]",
|
-C debuginfo=2 --test [..]",
|
||||||
)
|
)
|
||||||
.run();
|
.run();
|
||||||
@ -4269,7 +4269,7 @@ fn targets_selected_all() {
|
|||||||
)
|
)
|
||||||
// Unit tests.
|
// Unit tests.
|
||||||
.with_stderr_contains(
|
.with_stderr_contains(
|
||||||
"[RUNNING] `rustc --crate-name foo src/main.rs [..]--emit=[..]link \
|
"[RUNNING] `rustc --crate-name foo src/main.rs [..]--emit=[..]link[..]\
|
||||||
-C debuginfo=2 --test [..]",
|
-C debuginfo=2 --test [..]",
|
||||||
)
|
)
|
||||||
.run();
|
.run();
|
||||||
@ -4286,7 +4286,7 @@ fn all_targets_no_lib() {
|
|||||||
)
|
)
|
||||||
// Unit tests.
|
// Unit tests.
|
||||||
.with_stderr_contains(
|
.with_stderr_contains(
|
||||||
"[RUNNING] `rustc --crate-name foo src/main.rs [..]--emit=[..]link \
|
"[RUNNING] `rustc --crate-name foo src/main.rs [..]--emit=[..]link[..]\
|
||||||
-C debuginfo=2 --test [..]",
|
-C debuginfo=2 --test [..]",
|
||||||
)
|
)
|
||||||
.run();
|
.run();
|
||||||
@ -4726,7 +4726,7 @@ fn build_lib_only() {
|
|||||||
"\
|
"\
|
||||||
[COMPILING] foo v0.0.1 ([CWD])
|
[COMPILING] foo v0.0.1 ([CWD])
|
||||||
[RUNNING] `rustc --crate-name foo src/lib.rs [..]--crate-type lib \
|
[RUNNING] `rustc --crate-name foo src/lib.rs [..]--crate-type lib \
|
||||||
--emit=[..]link -C debuginfo=2 \
|
--emit=[..]link[..]-C debuginfo=2 \
|
||||||
-C metadata=[..] \
|
-C metadata=[..] \
|
||||||
--out-dir [..] \
|
--out-dir [..] \
|
||||||
-L dependency=[CWD]/target/debug/deps`
|
-L dependency=[CWD]/target/debug/deps`
|
||||||
|
@ -1139,19 +1139,19 @@ fn build_cmd_with_a_build_cmd() {
|
|||||||
[RUNNING] `rustc [..] a/build.rs [..] --extern b=[..]`
|
[RUNNING] `rustc [..] a/build.rs [..] --extern b=[..]`
|
||||||
[RUNNING] `[..]/a-[..]/build-script-build`
|
[RUNNING] `[..]/a-[..]/build-script-build`
|
||||||
[RUNNING] `rustc --crate-name a [..]lib.rs [..]--crate-type lib \
|
[RUNNING] `rustc --crate-name a [..]lib.rs [..]--crate-type lib \
|
||||||
--emit=[..]link -C debuginfo=2 \
|
--emit=[..]link[..]-C debuginfo=2 \
|
||||||
-C metadata=[..] \
|
-C metadata=[..] \
|
||||||
--out-dir [..]target/debug/deps \
|
--out-dir [..]target/debug/deps \
|
||||||
-L [..]target/debug/deps`
|
-L [..]target/debug/deps`
|
||||||
[COMPILING] foo v0.5.0 ([CWD])
|
[COMPILING] foo v0.5.0 ([CWD])
|
||||||
[RUNNING] `rustc --crate-name build_script_build build.rs [..]--crate-type bin \
|
[RUNNING] `rustc --crate-name build_script_build build.rs [..]--crate-type bin \
|
||||||
--emit=[..]link \
|
--emit=[..]link[..]\
|
||||||
-C debuginfo=2 -C metadata=[..] --out-dir [..] \
|
-C debuginfo=2 -C metadata=[..] --out-dir [..] \
|
||||||
-L [..]target/debug/deps \
|
-L [..]target/debug/deps \
|
||||||
--extern a=[..]liba[..].rlib`
|
--extern a=[..]liba[..].rlib`
|
||||||
[RUNNING] `[..]/foo-[..]/build-script-build`
|
[RUNNING] `[..]/foo-[..]/build-script-build`
|
||||||
[RUNNING] `rustc --crate-name foo [..]lib.rs [..]--crate-type lib \
|
[RUNNING] `rustc --crate-name foo [..]lib.rs [..]--crate-type lib \
|
||||||
--emit=[..]link -C debuginfo=2 \
|
--emit=[..]link[..]-C debuginfo=2 \
|
||||||
-C metadata=[..] \
|
-C metadata=[..] \
|
||||||
--out-dir [..] \
|
--out-dir [..] \
|
||||||
-L [..]target/debug/deps`
|
-L [..]target/debug/deps`
|
||||||
|
@ -193,7 +193,7 @@ fn linker() {
|
|||||||
"\
|
"\
|
||||||
[COMPILING] foo v0.5.0 ([CWD])
|
[COMPILING] foo v0.5.0 ([CWD])
|
||||||
[RUNNING] `rustc --crate-name foo src/foo.rs [..]--crate-type bin \
|
[RUNNING] `rustc --crate-name foo src/foo.rs [..]--crate-type bin \
|
||||||
--emit=[..]link -C debuginfo=2 \
|
--emit=[..]link[..]-C debuginfo=2 \
|
||||||
-C metadata=[..] \
|
-C metadata=[..] \
|
||||||
--out-dir [CWD]/target/{target}/debug/deps \
|
--out-dir [CWD]/target/{target}/debug/deps \
|
||||||
--target {target} \
|
--target {target} \
|
||||||
|
@ -1427,8 +1427,8 @@ fn reuse_panic_pm() {
|
|||||||
.with_stderr_unordered(
|
.with_stderr_unordered(
|
||||||
"\
|
"\
|
||||||
[COMPILING] bar [..]
|
[COMPILING] bar [..]
|
||||||
[RUNNING] `rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]link -C debuginfo=2 [..]
|
[RUNNING] `rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]link[..]-C debuginfo=2 [..]
|
||||||
[RUNNING] `rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]link -C panic=abort -C debuginfo=2 [..]
|
[RUNNING] `rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]link -C panic=abort[..]-C debuginfo=2 [..]
|
||||||
[COMPILING] somepm [..]
|
[COMPILING] somepm [..]
|
||||||
[RUNNING] `rustc --crate-name somepm [..]
|
[RUNNING] `rustc --crate-name somepm [..]
|
||||||
[COMPILING] foo [..]
|
[COMPILING] foo [..]
|
||||||
|
26
tests/testsuite/lto.rs
Normal file
26
tests/testsuite/lto.rs
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
use cargo_test_support::project;
|
||||||
|
use cargo_test_support::registry::Package;
|
||||||
|
|
||||||
|
#[cargo_test]
|
||||||
|
fn with_deps() {
|
||||||
|
Package::new("bar", "0.0.1").publish();
|
||||||
|
|
||||||
|
let p = project()
|
||||||
|
.file(
|
||||||
|
"Cargo.toml",
|
||||||
|
r#"
|
||||||
|
[package]
|
||||||
|
name = "test"
|
||||||
|
version = "0.0.0"
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
|
bar = "*"
|
||||||
|
|
||||||
|
[profile.release]
|
||||||
|
lto = true
|
||||||
|
"#,
|
||||||
|
)
|
||||||
|
.file("src/main.rs", "extern crate bar; fn main() {}")
|
||||||
|
.build();
|
||||||
|
p.cargo("build -v --release").run();
|
||||||
|
}
|
@ -61,6 +61,7 @@ mod local_registry;
|
|||||||
mod locate_project;
|
mod locate_project;
|
||||||
mod lockfile_compat;
|
mod lockfile_compat;
|
||||||
mod login;
|
mod login;
|
||||||
|
mod lto;
|
||||||
mod member_errors;
|
mod member_errors;
|
||||||
mod message_format;
|
mod message_format;
|
||||||
mod metabuild;
|
mod metabuild;
|
||||||
|
@ -283,7 +283,7 @@ fn profile_config_override_precedence() {
|
|||||||
.with_stderr(
|
.with_stderr(
|
||||||
"\
|
"\
|
||||||
[COMPILING] bar [..]
|
[COMPILING] bar [..]
|
||||||
[RUNNING] `rustc --crate-name bar [..] -C opt-level=2 -C codegen-units=2 [..]
|
[RUNNING] `rustc --crate-name bar [..] -C opt-level=2[..]-C codegen-units=2 [..]
|
||||||
[COMPILING] foo [..]
|
[COMPILING] foo [..]
|
||||||
[RUNNING] `rustc --crate-name foo [..]-C codegen-units=2 [..]
|
[RUNNING] `rustc --crate-name foo [..]-C codegen-units=2 [..]
|
||||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]",
|
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]",
|
||||||
|
@ -215,17 +215,17 @@ fn profile_override_hierarchy() {
|
|||||||
p.cargo("build -v").with_stderr_unordered("\
|
p.cargo("build -v").with_stderr_unordered("\
|
||||||
[COMPILING] m3 [..]
|
[COMPILING] m3 [..]
|
||||||
[COMPILING] dep [..]
|
[COMPILING] dep [..]
|
||||||
[RUNNING] `rustc --crate-name m3 m3/src/lib.rs [..] --crate-type lib --emit=[..]link -C codegen-units=4 [..]
|
[RUNNING] `rustc --crate-name m3 m3/src/lib.rs [..] --crate-type lib --emit=[..]link[..]-C codegen-units=4 [..]
|
||||||
[RUNNING] `rustc --crate-name dep [..]dep/src/lib.rs [..] --crate-type lib --emit=[..]link -C codegen-units=3 [..]
|
[RUNNING] `rustc --crate-name dep [..]dep/src/lib.rs [..] --crate-type lib --emit=[..]link[..]-C codegen-units=3 [..]
|
||||||
[RUNNING] `rustc --crate-name m3 m3/src/lib.rs [..] --crate-type lib --emit=[..]link -C codegen-units=1 [..]
|
[RUNNING] `rustc --crate-name m3 m3/src/lib.rs [..] --crate-type lib --emit=[..]link[..]-C codegen-units=1 [..]
|
||||||
[RUNNING] `rustc --crate-name build_script_build m1/build.rs [..] --crate-type bin --emit=[..]link -C codegen-units=4 [..]
|
[RUNNING] `rustc --crate-name build_script_build m1/build.rs [..] --crate-type bin --emit=[..]link[..]-C codegen-units=4 [..]
|
||||||
[COMPILING] m2 [..]
|
[COMPILING] m2 [..]
|
||||||
[RUNNING] `rustc --crate-name build_script_build m2/build.rs [..] --crate-type bin --emit=[..]link -C codegen-units=2 [..]
|
[RUNNING] `rustc --crate-name build_script_build m2/build.rs [..] --crate-type bin --emit=[..]link[..]-C codegen-units=2 [..]
|
||||||
[RUNNING] `[..]/m1-[..]/build-script-build`
|
[RUNNING] `[..]/m1-[..]/build-script-build`
|
||||||
[RUNNING] `[..]/m2-[..]/build-script-build`
|
[RUNNING] `[..]/m2-[..]/build-script-build`
|
||||||
[RUNNING] `rustc --crate-name m2 m2/src/lib.rs [..] --crate-type lib --emit=[..]link -C codegen-units=2 [..]
|
[RUNNING] `rustc --crate-name m2 m2/src/lib.rs [..] --crate-type lib --emit=[..]link[..]-C codegen-units=2 [..]
|
||||||
[COMPILING] m1 [..]
|
[COMPILING] m1 [..]
|
||||||
[RUNNING] `rustc --crate-name m1 m1/src/lib.rs [..] --crate-type lib --emit=[..]link -C codegen-units=1 [..]
|
[RUNNING] `rustc --crate-name m1 m1/src/lib.rs [..] --crate-type lib --emit=[..]link[..]-C codegen-units=1 [..]
|
||||||
[FINISHED] dev [unoptimized + debuginfo] [..]
|
[FINISHED] dev [unoptimized + debuginfo] [..]
|
||||||
",
|
",
|
||||||
)
|
)
|
||||||
|
@ -89,16 +89,16 @@ fn profile_selection_build() {
|
|||||||
// - build_script_build is built without panic because it thinks `build.rs` is a plugin.
|
// - build_script_build is built without panic because it thinks `build.rs` is a plugin.
|
||||||
p.cargo("build -vv").masquerade_as_nightly_cargo().with_stderr_unordered("\
|
p.cargo("build -vv").masquerade_as_nightly_cargo().with_stderr_unordered("\
|
||||||
[COMPILING] bar [..]
|
[COMPILING] bar [..]
|
||||||
[RUNNING] `[..] rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]link -C panic=abort -C codegen-units=1 -C debuginfo=2 [..]
|
[RUNNING] `[..] rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]link -C panic=abort[..]-C codegen-units=1 -C debuginfo=2 [..]
|
||||||
[RUNNING] `[..] rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]link -C codegen-units=1 -C debuginfo=2 [..]
|
[RUNNING] `[..] rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]link[..]-C codegen-units=1 -C debuginfo=2 [..]
|
||||||
[COMPILING] bdep [..]
|
[COMPILING] bdep [..]
|
||||||
[RUNNING] `[..] rustc --crate-name bdep bdep/src/lib.rs [..]--crate-type lib --emit=[..]link -C codegen-units=1 -C debuginfo=2 [..]
|
[RUNNING] `[..] rustc --crate-name bdep bdep/src/lib.rs [..]--crate-type lib --emit=[..]link[..]-C codegen-units=1 -C debuginfo=2 [..]
|
||||||
[COMPILING] foo [..]
|
[COMPILING] foo [..]
|
||||||
[RUNNING] `[..] rustc --crate-name build_script_build build.rs [..]--crate-type bin --emit=[..]link -C codegen-units=1 -C debuginfo=2 [..]
|
[RUNNING] `[..] rustc --crate-name build_script_build build.rs [..]--crate-type bin --emit=[..]link[..]-C codegen-units=1 -C debuginfo=2 [..]
|
||||||
[RUNNING] `[..]/target/debug/build/foo-[..]/build-script-build`
|
[RUNNING] `[..]/target/debug/build/foo-[..]/build-script-build`
|
||||||
[foo 0.0.1] foo custom build PROFILE=debug DEBUG=true OPT_LEVEL=0
|
[foo 0.0.1] foo custom build PROFILE=debug DEBUG=true OPT_LEVEL=0
|
||||||
[RUNNING] `[..] rustc --crate-name foo src/lib.rs [..]--crate-type lib --emit=[..]link -C panic=abort -C codegen-units=1 -C debuginfo=2 [..]
|
[RUNNING] `[..] rustc --crate-name foo src/lib.rs [..]--crate-type lib --emit=[..]link -C panic=abort[..]-C codegen-units=1 -C debuginfo=2 [..]
|
||||||
[RUNNING] `[..] rustc --crate-name foo src/main.rs [..]--crate-type bin --emit=[..]link -C panic=abort -C codegen-units=1 -C debuginfo=2 [..]
|
[RUNNING] `[..] rustc --crate-name foo src/main.rs [..]--crate-type bin --emit=[..]link -C panic=abort[..]-C codegen-units=1 -C debuginfo=2 [..]
|
||||||
[FINISHED] dev [unoptimized + debuginfo] [..]
|
[FINISHED] dev [unoptimized + debuginfo] [..]
|
||||||
").run();
|
").run();
|
||||||
p.cargo("build -vv")
|
p.cargo("build -vv")
|
||||||
@ -121,16 +121,16 @@ fn profile_selection_build_release() {
|
|||||||
// `build --release`
|
// `build --release`
|
||||||
p.cargo("build --release -vv").masquerade_as_nightly_cargo().with_stderr_unordered("\
|
p.cargo("build --release -vv").masquerade_as_nightly_cargo().with_stderr_unordered("\
|
||||||
[COMPILING] bar [..]
|
[COMPILING] bar [..]
|
||||||
[RUNNING] `[..] rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]link -C opt-level=3 -C panic=abort -C codegen-units=2 [..]
|
[RUNNING] `[..] rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]link -C opt-level=3 -C panic=abort[..]-C codegen-units=2 [..]
|
||||||
[RUNNING] `[..] rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]link -C opt-level=3 -C codegen-units=2 [..]
|
[RUNNING] `[..] rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]link -C opt-level=3[..]-C codegen-units=2 [..]
|
||||||
[COMPILING] bdep [..]
|
[COMPILING] bdep [..]
|
||||||
[RUNNING] `[..] rustc --crate-name bdep bdep/src/lib.rs [..]--crate-type lib --emit=[..]link -C opt-level=3 -C codegen-units=2 [..]
|
[RUNNING] `[..] rustc --crate-name bdep bdep/src/lib.rs [..]--crate-type lib --emit=[..]link -C opt-level=3[..]-C codegen-units=2 [..]
|
||||||
[COMPILING] foo [..]
|
[COMPILING] foo [..]
|
||||||
[RUNNING] `[..] rustc --crate-name build_script_build build.rs [..]--crate-type bin --emit=[..]link -C opt-level=3 -C codegen-units=2 [..]
|
[RUNNING] `[..] rustc --crate-name build_script_build build.rs [..]--crate-type bin --emit=[..]link -C opt-level=3[..]-C codegen-units=2 [..]
|
||||||
[RUNNING] `[..]/target/release/build/foo-[..]/build-script-build`
|
[RUNNING] `[..]/target/release/build/foo-[..]/build-script-build`
|
||||||
[foo 0.0.1] foo custom build PROFILE=release DEBUG=false OPT_LEVEL=3
|
[foo 0.0.1] foo custom build PROFILE=release DEBUG=false OPT_LEVEL=3
|
||||||
[RUNNING] `[..] rustc --crate-name foo src/lib.rs [..]--crate-type lib --emit=[..]link -C opt-level=3 -C panic=abort -C codegen-units=2 [..]
|
[RUNNING] `[..] rustc --crate-name foo src/lib.rs [..]--crate-type lib --emit=[..]link -C opt-level=3 -C panic=abort[..]-C codegen-units=2 [..]
|
||||||
[RUNNING] `[..] rustc --crate-name foo src/main.rs [..]--crate-type bin --emit=[..]link -C opt-level=3 -C panic=abort -C codegen-units=2 [..]
|
[RUNNING] `[..] rustc --crate-name foo src/main.rs [..]--crate-type bin --emit=[..]link -C opt-level=3 -C panic=abort[..]-C codegen-units=2 [..]
|
||||||
[FINISHED] release [optimized] [..]
|
[FINISHED] release [optimized] [..]
|
||||||
").run();
|
").run();
|
||||||
p.cargo("build --release -vv")
|
p.cargo("build --release -vv")
|
||||||
@ -179,22 +179,22 @@ fn profile_selection_build_all_targets() {
|
|||||||
// example dev build
|
// example dev build
|
||||||
p.cargo("build --all-targets -vv").masquerade_as_nightly_cargo().with_stderr_unordered(format!("\
|
p.cargo("build --all-targets -vv").masquerade_as_nightly_cargo().with_stderr_unordered(format!("\
|
||||||
[COMPILING] bar [..]
|
[COMPILING] bar [..]
|
||||||
[RUNNING] `[..] rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]link -C codegen-units=1 -C debuginfo=2 [..]
|
[RUNNING] `[..] rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]link[..]-C codegen-units=1 -C debuginfo=2 [..]
|
||||||
[RUNNING] `[..] rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]link -C panic=abort -C codegen-units=1 -C debuginfo=2 [..]
|
[RUNNING] `[..] rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]link -C panic=abort[..]-C codegen-units=1 -C debuginfo=2 [..]
|
||||||
[COMPILING] bdep [..]
|
[COMPILING] bdep [..]
|
||||||
[RUNNING] `[..] rustc --crate-name bdep bdep/src/lib.rs [..]--crate-type lib --emit=[..]link -C codegen-units=1 -C debuginfo=2 [..]
|
[RUNNING] `[..] rustc --crate-name bdep bdep/src/lib.rs [..]--crate-type lib --emit=[..]link[..]-C codegen-units=1 -C debuginfo=2 [..]
|
||||||
[COMPILING] foo [..]
|
[COMPILING] foo [..]
|
||||||
[RUNNING] `[..] rustc --crate-name build_script_build build.rs [..]--crate-type bin --emit=[..]link -C codegen-units=1 -C debuginfo=2 [..]
|
[RUNNING] `[..] rustc --crate-name build_script_build build.rs [..]--crate-type bin --emit=[..]link[..]-C codegen-units=1 -C debuginfo=2 [..]
|
||||||
[RUNNING] `[..]/target/debug/build/foo-[..]/build-script-build`
|
[RUNNING] `[..]/target/debug/build/foo-[..]/build-script-build`
|
||||||
[foo 0.0.1] foo custom build PROFILE=debug DEBUG=true OPT_LEVEL=0
|
[foo 0.0.1] foo custom build PROFILE=debug DEBUG=true OPT_LEVEL=0
|
||||||
[RUNNING] `[..] rustc --crate-name foo src/lib.rs [..]--crate-type lib --emit=[..]link -C panic=abort -C codegen-units=1 -C debuginfo=2 [..]`
|
[RUNNING] `[..] rustc --crate-name foo src/lib.rs [..]--crate-type lib --emit=[..]link -C panic=abort[..]-C codegen-units=1 -C debuginfo=2 [..]`
|
||||||
[RUNNING] `[..] rustc --crate-name foo src/lib.rs [..]--emit=[..]link -C codegen-units={affected} -C debuginfo=2 --test [..]`
|
[RUNNING] `[..] rustc --crate-name foo src/lib.rs [..]--emit=[..]link[..]-C codegen-units={affected} -C debuginfo=2 --test [..]`
|
||||||
[RUNNING] `[..] rustc --crate-name foo src/lib.rs [..]--crate-type lib --emit=[..]link -C codegen-units=1 -C debuginfo=2 [..]`
|
[RUNNING] `[..] rustc --crate-name foo src/lib.rs [..]--crate-type lib --emit=[..]link[..]-C codegen-units=1 -C debuginfo=2 [..]`
|
||||||
[RUNNING] `[..] rustc --crate-name foo src/main.rs [..]--emit=[..]link -C codegen-units={affected} -C debuginfo=2 --test [..]`
|
[RUNNING] `[..] rustc --crate-name foo src/main.rs [..]--emit=[..]link[..]-C codegen-units={affected} -C debuginfo=2 --test [..]`
|
||||||
[RUNNING] `[..] rustc --crate-name test1 tests/test1.rs [..]--emit=[..]link -C codegen-units={affected} -C debuginfo=2 --test [..]`
|
[RUNNING] `[..] rustc --crate-name test1 tests/test1.rs [..]--emit=[..]link[..]-C codegen-units={affected} -C debuginfo=2 --test [..]`
|
||||||
[RUNNING] `[..] rustc --crate-name bench1 benches/bench1.rs [..]--emit=[..]link -C codegen-units={affected} -C debuginfo=2 --test [..]`
|
[RUNNING] `[..] rustc --crate-name bench1 benches/bench1.rs [..]--emit=[..]link[..]-C codegen-units={affected} -C debuginfo=2 --test [..]`
|
||||||
[RUNNING] `[..] rustc --crate-name foo src/main.rs [..]--crate-type bin --emit=[..]link -C panic=abort -C codegen-units=1 -C debuginfo=2 [..]`
|
[RUNNING] `[..] rustc --crate-name foo src/main.rs [..]--crate-type bin --emit=[..]link -C panic=abort[..]-C codegen-units=1 -C debuginfo=2 [..]`
|
||||||
[RUNNING] `[..] rustc --crate-name ex1 examples/ex1.rs [..]--crate-type bin --emit=[..]link -C panic=abort -C codegen-units=1 -C debuginfo=2 [..]`
|
[RUNNING] `[..] rustc --crate-name ex1 examples/ex1.rs [..]--crate-type bin --emit=[..]link -C panic=abort[..]-C codegen-units=1 -C debuginfo=2 [..]`
|
||||||
[FINISHED] dev [unoptimized + debuginfo] [..]
|
[FINISHED] dev [unoptimized + debuginfo] [..]
|
||||||
", affected=affected)).run();
|
", affected=affected)).run();
|
||||||
p.cargo("build -vv")
|
p.cargo("build -vv")
|
||||||
@ -246,22 +246,22 @@ fn profile_selection_build_all_targets_release() {
|
|||||||
// example release build
|
// example release build
|
||||||
p.cargo("build --all-targets --release -vv").masquerade_as_nightly_cargo().with_stderr_unordered(format!("\
|
p.cargo("build --all-targets --release -vv").masquerade_as_nightly_cargo().with_stderr_unordered(format!("\
|
||||||
[COMPILING] bar [..]
|
[COMPILING] bar [..]
|
||||||
[RUNNING] `[..] rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]link -C opt-level=3 -C codegen-units=2 [..]
|
[RUNNING] `[..] rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]link -C opt-level=3[..]-C codegen-units=2 [..]
|
||||||
[RUNNING] `[..] rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]link -C opt-level=3 -C panic=abort -C codegen-units=2 [..]
|
[RUNNING] `[..] rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]link -C opt-level=3 -C panic=abort[..]-C codegen-units=2 [..]
|
||||||
[COMPILING] bdep [..]
|
[COMPILING] bdep [..]
|
||||||
[RUNNING] `[..] rustc --crate-name bdep bdep/src/lib.rs [..]--crate-type lib --emit=[..]link -C opt-level=3 -C codegen-units=2 [..]
|
[RUNNING] `[..] rustc --crate-name bdep bdep/src/lib.rs [..]--crate-type lib --emit=[..]link -C opt-level=3[..]-C codegen-units=2 [..]
|
||||||
[COMPILING] foo [..]
|
[COMPILING] foo [..]
|
||||||
[RUNNING] `[..] rustc --crate-name build_script_build build.rs [..]--crate-type bin --emit=[..]link -C opt-level=3 -C codegen-units=2 [..]
|
[RUNNING] `[..] rustc --crate-name build_script_build build.rs [..]--crate-type bin --emit=[..]link -C opt-level=3[..]-C codegen-units=2 [..]
|
||||||
[RUNNING] `[..]/target/release/build/foo-[..]/build-script-build`
|
[RUNNING] `[..]/target/release/build/foo-[..]/build-script-build`
|
||||||
[foo 0.0.1] foo custom build PROFILE=release DEBUG=false OPT_LEVEL=3
|
[foo 0.0.1] foo custom build PROFILE=release DEBUG=false OPT_LEVEL=3
|
||||||
[RUNNING] `[..] rustc --crate-name foo src/lib.rs [..]--crate-type lib --emit=[..]link -C opt-level=3 -C panic=abort -C codegen-units=2 [..]`
|
[RUNNING] `[..] rustc --crate-name foo src/lib.rs [..]--crate-type lib --emit=[..]link -C opt-level=3 -C panic=abort[..]-C codegen-units=2 [..]`
|
||||||
[RUNNING] `[..] rustc --crate-name foo src/lib.rs [..]--emit=[..]link -C opt-level=3 -C codegen-units={affected} --test [..]`
|
[RUNNING] `[..] rustc --crate-name foo src/lib.rs [..]--emit=[..]link -C opt-level=3[..]-C codegen-units={affected} --test [..]`
|
||||||
[RUNNING] `[..] rustc --crate-name foo src/lib.rs [..]--crate-type lib --emit=[..]link -C opt-level=3 -C codegen-units=2 [..]`
|
[RUNNING] `[..] rustc --crate-name foo src/lib.rs [..]--crate-type lib --emit=[..]link -C opt-level=3[..]-C codegen-units=2 [..]`
|
||||||
[RUNNING] `[..] rustc --crate-name test1 tests/test1.rs [..]--emit=[..]link -C opt-level=3 -C codegen-units={affected} --test [..]`
|
[RUNNING] `[..] rustc --crate-name test1 tests/test1.rs [..]--emit=[..]link -C opt-level=3[..]-C codegen-units={affected} --test [..]`
|
||||||
[RUNNING] `[..] rustc --crate-name bench1 benches/bench1.rs [..]--emit=[..]link -C opt-level=3 -C codegen-units={affected} --test [..]`
|
[RUNNING] `[..] rustc --crate-name bench1 benches/bench1.rs [..]--emit=[..]link -C opt-level=3[..]-C codegen-units={affected} --test [..]`
|
||||||
[RUNNING] `[..] rustc --crate-name foo src/main.rs [..]--emit=[..]link -C opt-level=3 -C codegen-units={affected} --test [..]`
|
[RUNNING] `[..] rustc --crate-name foo src/main.rs [..]--emit=[..]link -C opt-level=3[..]-C codegen-units={affected} --test [..]`
|
||||||
[RUNNING] `[..] rustc --crate-name foo src/main.rs [..]--crate-type bin --emit=[..]link -C opt-level=3 -C panic=abort -C codegen-units=2 [..]`
|
[RUNNING] `[..] rustc --crate-name foo src/main.rs [..]--crate-type bin --emit=[..]link -C opt-level=3 -C panic=abort[..]-C codegen-units=2 [..]`
|
||||||
[RUNNING] `[..] rustc --crate-name ex1 examples/ex1.rs [..]--crate-type bin --emit=[..]link -C opt-level=3 -C panic=abort -C codegen-units=2 [..]`
|
[RUNNING] `[..] rustc --crate-name ex1 examples/ex1.rs [..]--crate-type bin --emit=[..]link -C opt-level=3 -C panic=abort[..]-C codegen-units=2 [..]`
|
||||||
[FINISHED] release [optimized] [..]
|
[FINISHED] release [optimized] [..]
|
||||||
", affected=affected)).run();
|
", affected=affected)).run();
|
||||||
p.cargo("build --all-targets --release -vv")
|
p.cargo("build --all-targets --release -vv")
|
||||||
@ -304,21 +304,21 @@ fn profile_selection_test() {
|
|||||||
//
|
//
|
||||||
p.cargo("test -vv").masquerade_as_nightly_cargo().with_stderr_unordered(format!("\
|
p.cargo("test -vv").masquerade_as_nightly_cargo().with_stderr_unordered(format!("\
|
||||||
[COMPILING] bar [..]
|
[COMPILING] bar [..]
|
||||||
[RUNNING] `[..] rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]link -C codegen-units={affected} -C debuginfo=2 [..]
|
[RUNNING] `[..] rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]link[..]-C codegen-units={affected} -C debuginfo=2 [..]
|
||||||
[RUNNING] `[..] rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]link -C panic=abort -C codegen-units={affected} -C debuginfo=2 [..]
|
[RUNNING] `[..] rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]link -C panic=abort[..]-C codegen-units={affected} -C debuginfo=2 [..]
|
||||||
[COMPILING] bdep [..]
|
[COMPILING] bdep [..]
|
||||||
[RUNNING] `[..] rustc --crate-name bdep bdep/src/lib.rs [..]--crate-type lib --emit=[..]link -C codegen-units={affected} -C debuginfo=2 [..]
|
[RUNNING] `[..] rustc --crate-name bdep bdep/src/lib.rs [..]--crate-type lib --emit=[..]link[..]-C codegen-units={affected} -C debuginfo=2 [..]
|
||||||
[COMPILING] foo [..]
|
[COMPILING] foo [..]
|
||||||
[RUNNING] `[..] rustc --crate-name build_script_build build.rs [..]--crate-type bin --emit=[..]link -C codegen-units={affected} -C debuginfo=2 [..]
|
[RUNNING] `[..] rustc --crate-name build_script_build build.rs [..]--crate-type bin --emit=[..]link[..]-C codegen-units={affected} -C debuginfo=2 [..]
|
||||||
[RUNNING] `[..]/target/debug/build/foo-[..]/build-script-build`
|
[RUNNING] `[..]/target/debug/build/foo-[..]/build-script-build`
|
||||||
[foo 0.0.1] foo custom build PROFILE=debug DEBUG=true OPT_LEVEL=0
|
[foo 0.0.1] foo custom build PROFILE=debug DEBUG=true OPT_LEVEL=0
|
||||||
[RUNNING] `[..] rustc --crate-name foo src/lib.rs [..]--crate-type lib --emit=[..]link -C panic=abort -C codegen-units={affected} -C debuginfo=2 [..]
|
[RUNNING] `[..] rustc --crate-name foo src/lib.rs [..]--crate-type lib --emit=[..]link -C panic=abort[..]-C codegen-units={affected} -C debuginfo=2 [..]
|
||||||
[RUNNING] `[..] rustc --crate-name foo src/lib.rs [..]--crate-type lib --emit=[..]link -C codegen-units={affected} -C debuginfo=2 [..]
|
[RUNNING] `[..] rustc --crate-name foo src/lib.rs [..]--crate-type lib --emit=[..]link[..]-C codegen-units={affected} -C debuginfo=2 [..]
|
||||||
[RUNNING] `[..] rustc --crate-name foo src/lib.rs [..]--emit=[..]link -C codegen-units=3 -C debuginfo=2 --test [..]
|
[RUNNING] `[..] rustc --crate-name foo src/lib.rs [..]--emit=[..]link[..]-C codegen-units=3 -C debuginfo=2 --test [..]
|
||||||
[RUNNING] `[..] rustc --crate-name test1 tests/test1.rs [..]--emit=[..]link -C codegen-units=3 -C debuginfo=2 --test [..]
|
[RUNNING] `[..] rustc --crate-name test1 tests/test1.rs [..]--emit=[..]link[..]-C codegen-units=3 -C debuginfo=2 --test [..]
|
||||||
[RUNNING] `[..] rustc --crate-name ex1 examples/ex1.rs [..]--crate-type bin --emit=[..]link -C codegen-units={affected} -C debuginfo=2 [..]
|
[RUNNING] `[..] rustc --crate-name ex1 examples/ex1.rs [..]--crate-type bin --emit=[..]link[..]-C codegen-units={affected} -C debuginfo=2 [..]
|
||||||
[RUNNING] `[..] rustc --crate-name foo src/main.rs [..]--emit=[..]link -C codegen-units=3 -C debuginfo=2 --test [..]
|
[RUNNING] `[..] rustc --crate-name foo src/main.rs [..]--emit=[..]link[..]-C codegen-units=3 -C debuginfo=2 --test [..]
|
||||||
[RUNNING] `[..] rustc --crate-name foo src/main.rs [..]--crate-type bin --emit=[..]link -C panic=abort -C codegen-units={affected} -C debuginfo=2 [..]
|
[RUNNING] `[..] rustc --crate-name foo src/main.rs [..]--crate-type bin --emit=[..]link -C panic=abort[..]-C codegen-units={affected} -C debuginfo=2 [..]
|
||||||
[FINISHED] test [unoptimized + debuginfo] [..]
|
[FINISHED] test [unoptimized + debuginfo] [..]
|
||||||
[RUNNING] `[..]/deps/foo-[..]`
|
[RUNNING] `[..]/deps/foo-[..]`
|
||||||
[RUNNING] `[..]/deps/foo-[..]`
|
[RUNNING] `[..]/deps/foo-[..]`
|
||||||
@ -372,21 +372,21 @@ fn profile_selection_test_release() {
|
|||||||
//
|
//
|
||||||
p.cargo("test --release -vv").masquerade_as_nightly_cargo().with_stderr_unordered(format!("\
|
p.cargo("test --release -vv").masquerade_as_nightly_cargo().with_stderr_unordered(format!("\
|
||||||
[COMPILING] bar [..]
|
[COMPILING] bar [..]
|
||||||
[RUNNING] `[..] rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]link -C opt-level=3 -C codegen-units=2 [..]
|
[RUNNING] `[..] rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]link -C opt-level=3[..]-C codegen-units=2 [..]
|
||||||
[RUNNING] `[..] rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]link -C opt-level=3 -C panic=abort -C codegen-units=2 [..]
|
[RUNNING] `[..] rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]link -C opt-level=3 -C panic=abort[..]-C codegen-units=2 [..]
|
||||||
[COMPILING] bdep [..]
|
[COMPILING] bdep [..]
|
||||||
[RUNNING] `[..] rustc --crate-name bdep bdep/src/lib.rs [..]--crate-type lib --emit=[..]link -C opt-level=3 -C codegen-units=2 [..]
|
[RUNNING] `[..] rustc --crate-name bdep bdep/src/lib.rs [..]--crate-type lib --emit=[..]link -C opt-level=3[..]-C codegen-units=2 [..]
|
||||||
[COMPILING] foo [..]
|
[COMPILING] foo [..]
|
||||||
[RUNNING] `[..] rustc --crate-name build_script_build build.rs [..]--crate-type bin --emit=[..]link -C opt-level=3 -C codegen-units=2 [..]
|
[RUNNING] `[..] rustc --crate-name build_script_build build.rs [..]--crate-type bin --emit=[..]link -C opt-level=3[..]-C codegen-units=2 [..]
|
||||||
[RUNNING] `[..]/target/release/build/foo-[..]/build-script-build`
|
[RUNNING] `[..]/target/release/build/foo-[..]/build-script-build`
|
||||||
[foo 0.0.1] foo custom build PROFILE=release DEBUG=false OPT_LEVEL=3
|
[foo 0.0.1] foo custom build PROFILE=release DEBUG=false OPT_LEVEL=3
|
||||||
[RUNNING] `[..] rustc --crate-name foo src/lib.rs [..]--crate-type lib --emit=[..]link -C opt-level=3 -C panic=abort -C codegen-units=2 [..]
|
[RUNNING] `[..] rustc --crate-name foo src/lib.rs [..]--crate-type lib --emit=[..]link -C opt-level=3 -C panic=abort[..]-C codegen-units=2 [..]
|
||||||
[RUNNING] `[..] rustc --crate-name foo src/lib.rs [..]--crate-type lib --emit=[..]link -C opt-level=3 -C codegen-units=2 [..]
|
[RUNNING] `[..] rustc --crate-name foo src/lib.rs [..]--crate-type lib --emit=[..]link -C opt-level=3[..]-C codegen-units=2 [..]
|
||||||
[RUNNING] `[..] rustc --crate-name foo src/lib.rs [..]--emit=[..]link -C opt-level=3 -C codegen-units={affected} --test [..]
|
[RUNNING] `[..] rustc --crate-name foo src/lib.rs [..]--emit=[..]link -C opt-level=3[..]-C codegen-units={affected} --test [..]
|
||||||
[RUNNING] `[..] rustc --crate-name test1 tests/test1.rs [..]--emit=[..]link -C opt-level=3 -C codegen-units={affected} --test [..]
|
[RUNNING] `[..] rustc --crate-name test1 tests/test1.rs [..]--emit=[..]link -C opt-level=3[..]-C codegen-units={affected} --test [..]
|
||||||
[RUNNING] `[..] rustc --crate-name foo src/main.rs [..]--emit=[..]link -C opt-level=3 -C codegen-units={affected} --test [..]
|
[RUNNING] `[..] rustc --crate-name foo src/main.rs [..]--emit=[..]link -C opt-level=3[..]-C codegen-units={affected} --test [..]
|
||||||
[RUNNING] `[..] rustc --crate-name ex1 examples/ex1.rs [..]--crate-type bin --emit=[..]link -C opt-level=3 -C codegen-units=2 [..]
|
[RUNNING] `[..] rustc --crate-name ex1 examples/ex1.rs [..]--crate-type bin --emit=[..]link -C opt-level=3[..]-C codegen-units=2 [..]
|
||||||
[RUNNING] `[..] rustc --crate-name foo src/main.rs [..]--crate-type bin --emit=[..]link -C opt-level=3 -C panic=abort -C codegen-units=2 [..]
|
[RUNNING] `[..] rustc --crate-name foo src/main.rs [..]--crate-type bin --emit=[..]link -C opt-level=3 -C panic=abort[..]-C codegen-units=2 [..]
|
||||||
[FINISHED] release [optimized] [..]
|
[FINISHED] release [optimized] [..]
|
||||||
[RUNNING] `[..]/deps/foo-[..]`
|
[RUNNING] `[..]/deps/foo-[..]`
|
||||||
[RUNNING] `[..]/deps/foo-[..]`
|
[RUNNING] `[..]/deps/foo-[..]`
|
||||||
@ -439,20 +439,20 @@ fn profile_selection_bench() {
|
|||||||
//
|
//
|
||||||
p.cargo("bench -vv").masquerade_as_nightly_cargo().with_stderr_unordered(format!("\
|
p.cargo("bench -vv").masquerade_as_nightly_cargo().with_stderr_unordered(format!("\
|
||||||
[COMPILING] bar [..]
|
[COMPILING] bar [..]
|
||||||
[RUNNING] `[..] rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]link -C opt-level=3 -C codegen-units={affected} [..]
|
[RUNNING] `[..] rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]link -C opt-level=3[..]-C codegen-units={affected} [..]
|
||||||
[RUNNING] `[..] rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]link -C opt-level=3 -C panic=abort -C codegen-units={affected} [..]
|
[RUNNING] `[..] rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]link -C opt-level=3 -C panic=abort[..]-C codegen-units={affected} [..]
|
||||||
[COMPILING] bdep [..]
|
[COMPILING] bdep [..]
|
||||||
[RUNNING] `[..] rustc --crate-name bdep bdep/src/lib.rs [..]--crate-type lib --emit=[..]link -C opt-level=3 -C codegen-units={affected} [..]
|
[RUNNING] `[..] rustc --crate-name bdep bdep/src/lib.rs [..]--crate-type lib --emit=[..]link -C opt-level=3[..]-C codegen-units={affected} [..]
|
||||||
[COMPILING] foo [..]
|
[COMPILING] foo [..]
|
||||||
[RUNNING] `[..] rustc --crate-name build_script_build build.rs [..]--crate-type bin --emit=[..]link -C opt-level=3 -C codegen-units={affected} [..]
|
[RUNNING] `[..] rustc --crate-name build_script_build build.rs [..]--crate-type bin --emit=[..]link -C opt-level=3[..]-C codegen-units={affected} [..]
|
||||||
[RUNNING] `[..]target/release/build/foo-[..]/build-script-build`
|
[RUNNING] `[..]target/release/build/foo-[..]/build-script-build`
|
||||||
[foo 0.0.1] foo custom build PROFILE=release DEBUG=false OPT_LEVEL=3
|
[foo 0.0.1] foo custom build PROFILE=release DEBUG=false OPT_LEVEL=3
|
||||||
[RUNNING] `[..] rustc --crate-name foo src/lib.rs [..]--crate-type lib --emit=[..]link -C opt-level=3 -C panic=abort -C codegen-units={affected} [..]
|
[RUNNING] `[..] rustc --crate-name foo src/lib.rs [..]--crate-type lib --emit=[..]link -C opt-level=3 -C panic=abort[..]-C codegen-units={affected} [..]
|
||||||
[RUNNING] `[..] rustc --crate-name foo src/lib.rs [..]--crate-type lib --emit=[..]link -C opt-level=3 -C codegen-units={affected} [..]
|
[RUNNING] `[..] rustc --crate-name foo src/lib.rs [..]--crate-type lib --emit=[..]link -C opt-level=3[..]-C codegen-units={affected} [..]
|
||||||
[RUNNING] `[..] rustc --crate-name foo src/lib.rs [..]--emit=[..]link -C opt-level=3 -C codegen-units=4 --test [..]
|
[RUNNING] `[..] rustc --crate-name foo src/lib.rs [..]--emit=[..]link -C opt-level=3[..]-C codegen-units=4 --test [..]
|
||||||
[RUNNING] `[..] rustc --crate-name bench1 benches/bench1.rs [..]--emit=[..]link -C opt-level=3 -C codegen-units=4 --test [..]
|
[RUNNING] `[..] rustc --crate-name bench1 benches/bench1.rs [..]--emit=[..]link -C opt-level=3[..]-C codegen-units=4 --test [..]
|
||||||
[RUNNING] `[..] rustc --crate-name foo src/main.rs [..]--emit=[..]link -C opt-level=3 -C codegen-units=4 --test [..]
|
[RUNNING] `[..] rustc --crate-name foo src/main.rs [..]--emit=[..]link -C opt-level=3[..]-C codegen-units=4 --test [..]
|
||||||
[RUNNING] `[..] rustc --crate-name foo src/main.rs [..]--crate-type bin --emit=[..]link -C opt-level=3 -C panic=abort -C codegen-units={affected} [..]
|
[RUNNING] `[..] rustc --crate-name foo src/main.rs [..]--crate-type bin --emit=[..]link -C opt-level=3 -C panic=abort[..]-C codegen-units={affected} [..]
|
||||||
[FINISHED] bench [optimized] [..]
|
[FINISHED] bench [optimized] [..]
|
||||||
[RUNNING] `[..]/deps/foo-[..] --bench`
|
[RUNNING] `[..]/deps/foo-[..] --bench`
|
||||||
[RUNNING] `[..]/deps/foo-[..] --bench`
|
[RUNNING] `[..]/deps/foo-[..] --bench`
|
||||||
@ -504,23 +504,23 @@ fn profile_selection_check_all_targets() {
|
|||||||
//
|
//
|
||||||
p.cargo("check --all-targets -vv").masquerade_as_nightly_cargo().with_stderr_unordered("\
|
p.cargo("check --all-targets -vv").masquerade_as_nightly_cargo().with_stderr_unordered("\
|
||||||
[COMPILING] bar [..]
|
[COMPILING] bar [..]
|
||||||
[RUNNING] `[..] rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]link -C codegen-units=1 -C debuginfo=2 [..]
|
[RUNNING] `[..] rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]link[..]-C codegen-units=1 -C debuginfo=2 [..]
|
||||||
[RUNNING] `[..] rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]metadata -C codegen-units=1 -C debuginfo=2 [..]
|
[RUNNING] `[..] rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]metadata[..]-C codegen-units=1 -C debuginfo=2 [..]
|
||||||
[RUNNING] `[..] rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]metadata -C panic=abort -C codegen-units=1 -C debuginfo=2 [..]
|
[RUNNING] `[..] rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]metadata -C panic=abort[..]-C codegen-units=1 -C debuginfo=2 [..]
|
||||||
[COMPILING] bdep[..]
|
[COMPILING] bdep[..]
|
||||||
[RUNNING] `[..] rustc --crate-name bdep bdep/src/lib.rs [..]--crate-type lib --emit=[..]link -C codegen-units=1 -C debuginfo=2 [..]
|
[RUNNING] `[..] rustc --crate-name bdep bdep/src/lib.rs [..]--crate-type lib --emit=[..]link[..]-C codegen-units=1 -C debuginfo=2 [..]
|
||||||
[COMPILING] foo [..]
|
[COMPILING] foo [..]
|
||||||
[RUNNING] `[..] rustc --crate-name build_script_build build.rs [..]--crate-type bin --emit=[..]link -C codegen-units=1 -C debuginfo=2 [..]
|
[RUNNING] `[..] rustc --crate-name build_script_build build.rs [..]--crate-type bin --emit=[..]link[..]-C codegen-units=1 -C debuginfo=2 [..]
|
||||||
[RUNNING] `[..]target/debug/build/foo-[..]/build-script-build`
|
[RUNNING] `[..]target/debug/build/foo-[..]/build-script-build`
|
||||||
[foo 0.0.1] foo custom build PROFILE=debug DEBUG=true OPT_LEVEL=0
|
[foo 0.0.1] foo custom build PROFILE=debug DEBUG=true OPT_LEVEL=0
|
||||||
[RUNNING] `[..] rustc --crate-name foo src/lib.rs [..]--crate-type lib --emit=[..]metadata -C panic=abort -C codegen-units=1 -C debuginfo=2 [..]
|
[RUNNING] `[..] rustc --crate-name foo src/lib.rs [..]--crate-type lib --emit=[..]metadata -C panic=abort[..]-C codegen-units=1 -C debuginfo=2 [..]
|
||||||
[RUNNING] `[..] rustc --crate-name foo src/lib.rs [..]--crate-type lib --emit=[..]metadata -C codegen-units=1 -C debuginfo=2 [..]
|
[RUNNING] `[..] rustc --crate-name foo src/lib.rs [..]--crate-type lib --emit=[..]metadata[..]-C codegen-units=1 -C debuginfo=2 [..]
|
||||||
[RUNNING] `[..] rustc --crate-name foo src/lib.rs [..]--emit=[..]metadata -C codegen-units=1 -C debuginfo=2 --test [..]
|
[RUNNING] `[..] rustc --crate-name foo src/lib.rs [..]--emit=[..]metadata[..]-C codegen-units=1 -C debuginfo=2 --test [..]
|
||||||
[RUNNING] `[..] rustc --crate-name test1 tests/test1.rs [..]--emit=[..]metadata -C codegen-units=1 -C debuginfo=2 --test [..]
|
[RUNNING] `[..] rustc --crate-name test1 tests/test1.rs [..]--emit=[..]metadata[..]-C codegen-units=1 -C debuginfo=2 --test [..]
|
||||||
[RUNNING] `[..] rustc --crate-name foo src/main.rs [..]--emit=[..]metadata -C codegen-units=1 -C debuginfo=2 --test [..]
|
[RUNNING] `[..] rustc --crate-name foo src/main.rs [..]--emit=[..]metadata[..]-C codegen-units=1 -C debuginfo=2 --test [..]
|
||||||
[RUNNING] `[..] rustc --crate-name bench1 benches/bench1.rs [..]--emit=[..]metadata -C codegen-units=1 -C debuginfo=2 --test [..]
|
[RUNNING] `[..] rustc --crate-name bench1 benches/bench1.rs [..]--emit=[..]metadata[..]-C codegen-units=1 -C debuginfo=2 --test [..]
|
||||||
[RUNNING] `[..] rustc --crate-name ex1 examples/ex1.rs [..]--crate-type bin --emit=[..]metadata -C panic=abort -C codegen-units=1 -C debuginfo=2 [..]
|
[RUNNING] `[..] rustc --crate-name ex1 examples/ex1.rs [..]--crate-type bin --emit=[..]metadata -C panic=abort[..]-C codegen-units=1 -C debuginfo=2 [..]
|
||||||
[RUNNING] `[..] rustc --crate-name foo src/main.rs [..]--crate-type bin --emit=[..]metadata -C panic=abort -C codegen-units=1 -C debuginfo=2 [..]
|
[RUNNING] `[..] rustc --crate-name foo src/main.rs [..]--crate-type bin --emit=[..]metadata -C panic=abort[..]-C codegen-units=1 -C debuginfo=2 [..]
|
||||||
[FINISHED] dev [unoptimized + debuginfo] [..]
|
[FINISHED] dev [unoptimized + debuginfo] [..]
|
||||||
").run();
|
").run();
|
||||||
// Starting with Rust 1.27, rustc emits `rmeta` files for bins, so
|
// Starting with Rust 1.27, rustc emits `rmeta` files for bins, so
|
||||||
@ -550,23 +550,23 @@ fn profile_selection_check_all_targets_release() {
|
|||||||
// `dev` for all targets.
|
// `dev` for all targets.
|
||||||
p.cargo("check --all-targets --release -vv").masquerade_as_nightly_cargo().with_stderr_unordered("\
|
p.cargo("check --all-targets --release -vv").masquerade_as_nightly_cargo().with_stderr_unordered("\
|
||||||
[COMPILING] bar [..]
|
[COMPILING] bar [..]
|
||||||
[RUNNING] `[..] rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]link -C opt-level=3 -C codegen-units=2 [..]
|
[RUNNING] `[..] rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]link -C opt-level=3[..]-C codegen-units=2 [..]
|
||||||
[RUNNING] `[..] rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]metadata -C opt-level=3 -C codegen-units=2 [..]
|
[RUNNING] `[..] rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]metadata -C opt-level=3[..]-C codegen-units=2 [..]
|
||||||
[RUNNING] `[..] rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]metadata -C opt-level=3 -C panic=abort -C codegen-units=2 [..]
|
[RUNNING] `[..] rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]metadata -C opt-level=3 -C panic=abort[..]-C codegen-units=2 [..]
|
||||||
[COMPILING] bdep[..]
|
[COMPILING] bdep[..]
|
||||||
[RUNNING] `[..] rustc --crate-name bdep bdep/src/lib.rs [..]--crate-type lib --emit=[..]link -C opt-level=3 -C codegen-units=2 [..]
|
[RUNNING] `[..] rustc --crate-name bdep bdep/src/lib.rs [..]--crate-type lib --emit=[..]link -C opt-level=3[..]-C codegen-units=2 [..]
|
||||||
[COMPILING] foo [..]
|
[COMPILING] foo [..]
|
||||||
[RUNNING] `[..] rustc --crate-name build_script_build build.rs [..]--crate-type bin --emit=[..]link -C opt-level=3 -C codegen-units=2 [..]
|
[RUNNING] `[..] rustc --crate-name build_script_build build.rs [..]--crate-type bin --emit=[..]link -C opt-level=3[..]-C codegen-units=2 [..]
|
||||||
[RUNNING] `[..]target/release/build/foo-[..]/build-script-build`
|
[RUNNING] `[..]target/release/build/foo-[..]/build-script-build`
|
||||||
[foo 0.0.1] foo custom build PROFILE=release DEBUG=false OPT_LEVEL=3
|
[foo 0.0.1] foo custom build PROFILE=release DEBUG=false OPT_LEVEL=3
|
||||||
[RUNNING] `[..] rustc --crate-name foo src/lib.rs [..]--crate-type lib --emit=[..]metadata -C opt-level=3 -C panic=abort -C codegen-units=2 [..]
|
[RUNNING] `[..] rustc --crate-name foo src/lib.rs [..]--crate-type lib --emit=[..]metadata -C opt-level=3 -C panic=abort[..]-C codegen-units=2 [..]
|
||||||
[RUNNING] `[..] rustc --crate-name foo src/lib.rs [..]--crate-type lib --emit=[..]metadata -C opt-level=3 -C codegen-units=2 [..]
|
[RUNNING] `[..] rustc --crate-name foo src/lib.rs [..]--crate-type lib --emit=[..]metadata -C opt-level=3[..]-C codegen-units=2 [..]
|
||||||
[RUNNING] `[..] rustc --crate-name foo src/lib.rs [..]--emit=[..]metadata -C opt-level=3 -C codegen-units=2 --test [..]
|
[RUNNING] `[..] rustc --crate-name foo src/lib.rs [..]--emit=[..]metadata -C opt-level=3[..]-C codegen-units=2 --test [..]
|
||||||
[RUNNING] `[..] rustc --crate-name test1 tests/test1.rs [..]--emit=[..]metadata -C opt-level=3 -C codegen-units=2 --test [..]
|
[RUNNING] `[..] rustc --crate-name test1 tests/test1.rs [..]--emit=[..]metadata -C opt-level=3[..]-C codegen-units=2 --test [..]
|
||||||
[RUNNING] `[..] rustc --crate-name foo src/main.rs [..]--emit=[..]metadata -C opt-level=3 -C codegen-units=2 --test [..]
|
[RUNNING] `[..] rustc --crate-name foo src/main.rs [..]--emit=[..]metadata -C opt-level=3[..]-C codegen-units=2 --test [..]
|
||||||
[RUNNING] `[..] rustc --crate-name bench1 benches/bench1.rs [..]--emit=[..]metadata -C opt-level=3 -C codegen-units=2 --test [..]
|
[RUNNING] `[..] rustc --crate-name bench1 benches/bench1.rs [..]--emit=[..]metadata -C opt-level=3[..]-C codegen-units=2 --test [..]
|
||||||
[RUNNING] `[..] rustc --crate-name ex1 examples/ex1.rs [..]--crate-type bin --emit=[..]metadata -C opt-level=3 -C panic=abort -C codegen-units=2 [..]
|
[RUNNING] `[..] rustc --crate-name ex1 examples/ex1.rs [..]--crate-type bin --emit=[..]metadata -C opt-level=3 -C panic=abort[..]-C codegen-units=2 [..]
|
||||||
[RUNNING] `[..] rustc --crate-name foo src/main.rs [..]--crate-type bin --emit=[..]metadata -C opt-level=3 -C panic=abort -C codegen-units=2 [..]
|
[RUNNING] `[..] rustc --crate-name foo src/main.rs [..]--crate-type bin --emit=[..]metadata -C opt-level=3 -C panic=abort[..]-C codegen-units=2 [..]
|
||||||
[FINISHED] release [optimized] [..]
|
[FINISHED] release [optimized] [..]
|
||||||
").run();
|
").run();
|
||||||
|
|
||||||
@ -611,20 +611,20 @@ fn profile_selection_check_all_targets_test() {
|
|||||||
//
|
//
|
||||||
p.cargo("check --all-targets --profile=test -vv").masquerade_as_nightly_cargo().with_stderr_unordered(format!("\
|
p.cargo("check --all-targets --profile=test -vv").masquerade_as_nightly_cargo().with_stderr_unordered(format!("\
|
||||||
[COMPILING] bar [..]
|
[COMPILING] bar [..]
|
||||||
[RUNNING] `[..] rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]link -C codegen-units={affected} -C debuginfo=2 [..]
|
[RUNNING] `[..] rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]link[..]-C codegen-units={affected} -C debuginfo=2 [..]
|
||||||
[RUNNING] `[..] rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]metadata -C codegen-units={affected} -C debuginfo=2 [..]
|
[RUNNING] `[..] rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]metadata[..]-C codegen-units={affected} -C debuginfo=2 [..]
|
||||||
[COMPILING] bdep[..]
|
[COMPILING] bdep[..]
|
||||||
[RUNNING] `[..] rustc --crate-name bdep bdep/src/lib.rs [..]--crate-type lib --emit=[..]link -C codegen-units={affected} -C debuginfo=2 [..]
|
[RUNNING] `[..] rustc --crate-name bdep bdep/src/lib.rs [..]--crate-type lib --emit=[..]link[..]-C codegen-units={affected} -C debuginfo=2 [..]
|
||||||
[COMPILING] foo [..]
|
[COMPILING] foo [..]
|
||||||
[RUNNING] `[..] rustc --crate-name build_script_build build.rs [..]--crate-type bin --emit=[..]link -C codegen-units={affected} -C debuginfo=2 [..]
|
[RUNNING] `[..] rustc --crate-name build_script_build build.rs [..]--crate-type bin --emit=[..]link[..]-C codegen-units={affected} -C debuginfo=2 [..]
|
||||||
[RUNNING] `[..]target/debug/build/foo-[..]/build-script-build`
|
[RUNNING] `[..]target/debug/build/foo-[..]/build-script-build`
|
||||||
[foo 0.0.1] foo custom build PROFILE=debug DEBUG=true OPT_LEVEL=0
|
[foo 0.0.1] foo custom build PROFILE=debug DEBUG=true OPT_LEVEL=0
|
||||||
[RUNNING] `[..] rustc --crate-name foo src/lib.rs [..]--crate-type lib --emit=[..]metadata -C codegen-units={affected} -C debuginfo=2 [..]
|
[RUNNING] `[..] rustc --crate-name foo src/lib.rs [..]--crate-type lib --emit=[..]metadata[..]-C codegen-units={affected} -C debuginfo=2 [..]
|
||||||
[RUNNING] `[..] rustc --crate-name foo src/lib.rs [..]--emit=[..]metadata -C codegen-units={affected} -C debuginfo=2 --test [..]
|
[RUNNING] `[..] rustc --crate-name foo src/lib.rs [..]--emit=[..]metadata[..]-C codegen-units={affected} -C debuginfo=2 --test [..]
|
||||||
[RUNNING] `[..] rustc --crate-name test1 tests/test1.rs [..]--emit=[..]metadata -C codegen-units={affected} -C debuginfo=2 --test [..]
|
[RUNNING] `[..] rustc --crate-name test1 tests/test1.rs [..]--emit=[..]metadata[..]-C codegen-units={affected} -C debuginfo=2 --test [..]
|
||||||
[RUNNING] `[..] rustc --crate-name foo src/main.rs [..]--emit=[..]metadata -C codegen-units={affected} -C debuginfo=2 --test [..]
|
[RUNNING] `[..] rustc --crate-name foo src/main.rs [..]--emit=[..]metadata[..]-C codegen-units={affected} -C debuginfo=2 --test [..]
|
||||||
[RUNNING] `[..] rustc --crate-name bench1 benches/bench1.rs [..]--emit=[..]metadata -C codegen-units={affected} -C debuginfo=2 --test [..]
|
[RUNNING] `[..] rustc --crate-name bench1 benches/bench1.rs [..]--emit=[..]metadata[..]-C codegen-units={affected} -C debuginfo=2 --test [..]
|
||||||
[RUNNING] `[..] rustc --crate-name ex1 examples/ex1.rs [..]--emit=[..]metadata -C codegen-units={affected} -C debuginfo=2 --test [..]
|
[RUNNING] `[..] rustc --crate-name ex1 examples/ex1.rs [..]--emit=[..]metadata[..]-C codegen-units={affected} -C debuginfo=2 --test [..]
|
||||||
[FINISHED] test [unoptimized + debuginfo] [..]
|
[FINISHED] test [unoptimized + debuginfo] [..]
|
||||||
", affected=affected)).run();
|
", affected=affected)).run();
|
||||||
|
|
||||||
@ -658,13 +658,13 @@ fn profile_selection_doc() {
|
|||||||
p.cargo("doc -vv").masquerade_as_nightly_cargo().with_stderr_unordered("\
|
p.cargo("doc -vv").masquerade_as_nightly_cargo().with_stderr_unordered("\
|
||||||
[COMPILING] bar [..]
|
[COMPILING] bar [..]
|
||||||
[DOCUMENTING] bar [..]
|
[DOCUMENTING] bar [..]
|
||||||
[RUNNING] `[..] rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]link -C codegen-units=1 -C debuginfo=2 [..]
|
[RUNNING] `[..] rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]link[..]-C codegen-units=1 -C debuginfo=2 [..]
|
||||||
[RUNNING] `rustdoc [..]--crate-name bar bar/src/lib.rs [..]
|
[RUNNING] `rustdoc [..]--crate-name bar bar/src/lib.rs [..]
|
||||||
[RUNNING] `[..] rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]metadata -C panic=abort -C codegen-units=1 -C debuginfo=2 [..]
|
[RUNNING] `[..] rustc --crate-name bar bar/src/lib.rs [..]--crate-type lib --emit=[..]metadata -C panic=abort[..]-C codegen-units=1 -C debuginfo=2 [..]
|
||||||
[COMPILING] bdep [..]
|
[COMPILING] bdep [..]
|
||||||
[RUNNING] `[..] rustc --crate-name bdep bdep/src/lib.rs [..]--crate-type lib --emit=[..]link -C codegen-units=1 -C debuginfo=2 [..]
|
[RUNNING] `[..] rustc --crate-name bdep bdep/src/lib.rs [..]--crate-type lib --emit=[..]link[..]-C codegen-units=1 -C debuginfo=2 [..]
|
||||||
[COMPILING] foo [..]
|
[COMPILING] foo [..]
|
||||||
[RUNNING] `[..] rustc --crate-name build_script_build build.rs [..]--crate-type bin --emit=[..]link -C codegen-units=1 -C debuginfo=2 [..]
|
[RUNNING] `[..] rustc --crate-name build_script_build build.rs [..]--crate-type bin --emit=[..]link[..]-C codegen-units=1 -C debuginfo=2 [..]
|
||||||
[RUNNING] `[..]target/debug/build/foo-[..]/build-script-build`
|
[RUNNING] `[..]target/debug/build/foo-[..]/build-script-build`
|
||||||
[foo 0.0.1] foo custom build PROFILE=debug DEBUG=true OPT_LEVEL=0
|
[foo 0.0.1] foo custom build PROFILE=debug DEBUG=true OPT_LEVEL=0
|
||||||
[DOCUMENTING] foo [..]
|
[DOCUMENTING] foo [..]
|
||||||
|
@ -29,8 +29,8 @@ fn profile_overrides() {
|
|||||||
"\
|
"\
|
||||||
[COMPILING] test v0.0.0 ([CWD])
|
[COMPILING] test v0.0.0 ([CWD])
|
||||||
[RUNNING] `rustc --crate-name test src/lib.rs [..]--crate-type lib \
|
[RUNNING] `rustc --crate-name test src/lib.rs [..]--crate-type lib \
|
||||||
--emit=[..]link \
|
--emit=[..]link[..]\
|
||||||
-C opt-level=1 \
|
-C opt-level=1[..]\
|
||||||
-C debug-assertions=on \
|
-C debug-assertions=on \
|
||||||
-C metadata=[..] \
|
-C metadata=[..] \
|
||||||
-C rpath \
|
-C rpath \
|
||||||
@ -65,7 +65,7 @@ fn opt_level_override_0() {
|
|||||||
"\
|
"\
|
||||||
[COMPILING] test v0.0.0 ([CWD])
|
[COMPILING] test v0.0.0 ([CWD])
|
||||||
[RUNNING] `rustc --crate-name test src/lib.rs [..]--crate-type lib \
|
[RUNNING] `rustc --crate-name test src/lib.rs [..]--crate-type lib \
|
||||||
--emit=[..]link \
|
--emit=[..]link[..]\
|
||||||
-C debuginfo=2 \
|
-C debuginfo=2 \
|
||||||
-C metadata=[..] \
|
-C metadata=[..] \
|
||||||
--out-dir [..] \
|
--out-dir [..] \
|
||||||
@ -98,7 +98,7 @@ fn debug_override_1() {
|
|||||||
"\
|
"\
|
||||||
[COMPILING] test v0.0.0 ([CWD])
|
[COMPILING] test v0.0.0 ([CWD])
|
||||||
[RUNNING] `rustc --crate-name test src/lib.rs [..]--crate-type lib \
|
[RUNNING] `rustc --crate-name test src/lib.rs [..]--crate-type lib \
|
||||||
--emit=[..]link \
|
--emit=[..]link[..]\
|
||||||
-C debuginfo=1 \
|
-C debuginfo=1 \
|
||||||
-C metadata=[..] \
|
-C metadata=[..] \
|
||||||
--out-dir [..] \
|
--out-dir [..] \
|
||||||
@ -135,7 +135,7 @@ fn check_opt_level_override(profile_level: &str, rustc_level: &str) {
|
|||||||
[COMPILING] test v0.0.0 ([CWD])
|
[COMPILING] test v0.0.0 ([CWD])
|
||||||
[RUNNING] `rustc --crate-name test src/lib.rs [..]--crate-type lib \
|
[RUNNING] `rustc --crate-name test src/lib.rs [..]--crate-type lib \
|
||||||
--emit=[..]link \
|
--emit=[..]link \
|
||||||
-C opt-level={level} \
|
-C opt-level={level}[..]\
|
||||||
-C debuginfo=2 \
|
-C debuginfo=2 \
|
||||||
-C debug-assertions=on \
|
-C debug-assertions=on \
|
||||||
-C metadata=[..] \
|
-C metadata=[..] \
|
||||||
@ -210,7 +210,7 @@ fn top_level_overrides_deps() {
|
|||||||
--crate-type dylib --crate-type rlib \
|
--crate-type dylib --crate-type rlib \
|
||||||
--emit=[..]link \
|
--emit=[..]link \
|
||||||
-C prefer-dynamic \
|
-C prefer-dynamic \
|
||||||
-C opt-level=1 \
|
-C opt-level=1[..]\
|
||||||
-C debuginfo=2 \
|
-C debuginfo=2 \
|
||||||
-C metadata=[..] \
|
-C metadata=[..] \
|
||||||
--out-dir [CWD]/target/release/deps \
|
--out-dir [CWD]/target/release/deps \
|
||||||
@ -218,7 +218,7 @@ fn top_level_overrides_deps() {
|
|||||||
[COMPILING] test v0.0.0 ([CWD])
|
[COMPILING] test v0.0.0 ([CWD])
|
||||||
[RUNNING] `rustc --crate-name test src/lib.rs [..]--crate-type lib \
|
[RUNNING] `rustc --crate-name test src/lib.rs [..]--crate-type lib \
|
||||||
--emit=[..]link \
|
--emit=[..]link \
|
||||||
-C opt-level=1 \
|
-C opt-level=1[..]\
|
||||||
-C debuginfo=2 \
|
-C debuginfo=2 \
|
||||||
-C metadata=[..] \
|
-C metadata=[..] \
|
||||||
--out-dir [..] \
|
--out-dir [..] \
|
||||||
|
@ -632,14 +632,14 @@ fn example_with_release_flag() {
|
|||||||
[COMPILING] bar v0.5.0 ([CWD]/bar)
|
[COMPILING] bar v0.5.0 ([CWD]/bar)
|
||||||
[RUNNING] `rustc --crate-name bar bar/src/bar.rs [..]--crate-type lib \
|
[RUNNING] `rustc --crate-name bar bar/src/bar.rs [..]--crate-type lib \
|
||||||
--emit=[..]link \
|
--emit=[..]link \
|
||||||
-C opt-level=3 \
|
-C opt-level=3[..]\
|
||||||
-C metadata=[..] \
|
-C metadata=[..] \
|
||||||
--out-dir [CWD]/target/release/deps \
|
--out-dir [CWD]/target/release/deps \
|
||||||
-L dependency=[CWD]/target/release/deps`
|
-L dependency=[CWD]/target/release/deps`
|
||||||
[COMPILING] foo v0.0.1 ([CWD])
|
[COMPILING] foo v0.0.1 ([CWD])
|
||||||
[RUNNING] `rustc --crate-name a examples/a.rs [..]--crate-type bin \
|
[RUNNING] `rustc --crate-name a examples/a.rs [..]--crate-type bin \
|
||||||
--emit=[..]link \
|
--emit=[..]link \
|
||||||
-C opt-level=3 \
|
-C opt-level=3[..]\
|
||||||
-C metadata=[..] \
|
-C metadata=[..] \
|
||||||
--out-dir [CWD]/target/release/examples \
|
--out-dir [CWD]/target/release/examples \
|
||||||
-L dependency=[CWD]/target/release/deps \
|
-L dependency=[CWD]/target/release/deps \
|
||||||
@ -660,14 +660,14 @@ fast2",
|
|||||||
"\
|
"\
|
||||||
[COMPILING] bar v0.5.0 ([CWD]/bar)
|
[COMPILING] bar v0.5.0 ([CWD]/bar)
|
||||||
[RUNNING] `rustc --crate-name bar bar/src/bar.rs [..]--crate-type lib \
|
[RUNNING] `rustc --crate-name bar bar/src/bar.rs [..]--crate-type lib \
|
||||||
--emit=[..]link \
|
--emit=[..]link[..]\
|
||||||
-C debuginfo=2 \
|
-C debuginfo=2 \
|
||||||
-C metadata=[..] \
|
-C metadata=[..] \
|
||||||
--out-dir [CWD]/target/debug/deps \
|
--out-dir [CWD]/target/debug/deps \
|
||||||
-L dependency=[CWD]/target/debug/deps`
|
-L dependency=[CWD]/target/debug/deps`
|
||||||
[COMPILING] foo v0.0.1 ([CWD])
|
[COMPILING] foo v0.0.1 ([CWD])
|
||||||
[RUNNING] `rustc --crate-name a examples/a.rs [..]--crate-type bin \
|
[RUNNING] `rustc --crate-name a examples/a.rs [..]--crate-type bin \
|
||||||
--emit=[..]link \
|
--emit=[..]link[..]\
|
||||||
-C debuginfo=2 \
|
-C debuginfo=2 \
|
||||||
-C metadata=[..] \
|
-C metadata=[..] \
|
||||||
--out-dir [CWD]/target/debug/examples \
|
--out-dir [CWD]/target/debug/examples \
|
||||||
|
@ -18,7 +18,7 @@ fn build_lib_for_foo() {
|
|||||||
"\
|
"\
|
||||||
[COMPILING] foo v0.0.1 ([CWD])
|
[COMPILING] foo v0.0.1 ([CWD])
|
||||||
[RUNNING] `rustc --crate-name foo src/lib.rs [..]--crate-type lib \
|
[RUNNING] `rustc --crate-name foo src/lib.rs [..]--crate-type lib \
|
||||||
--emit=[..]link -C debuginfo=2 \
|
--emit=[..]link[..]-C debuginfo=2 \
|
||||||
-C metadata=[..] \
|
-C metadata=[..] \
|
||||||
--out-dir [..] \
|
--out-dir [..] \
|
||||||
-L dependency=[CWD]/target/debug/deps`
|
-L dependency=[CWD]/target/debug/deps`
|
||||||
@ -40,7 +40,7 @@ fn lib() {
|
|||||||
"\
|
"\
|
||||||
[COMPILING] foo v0.0.1 ([CWD])
|
[COMPILING] foo v0.0.1 ([CWD])
|
||||||
[RUNNING] `rustc --crate-name foo src/lib.rs [..]--crate-type lib \
|
[RUNNING] `rustc --crate-name foo src/lib.rs [..]--crate-type lib \
|
||||||
--emit=[..]link -C debuginfo=2 \
|
--emit=[..]link[..]-C debuginfo=2 \
|
||||||
-C debug-assertions=off \
|
-C debug-assertions=off \
|
||||||
-C metadata=[..] \
|
-C metadata=[..] \
|
||||||
--out-dir [..] \
|
--out-dir [..] \
|
||||||
@ -63,12 +63,12 @@ fn build_main_and_allow_unstable_options() {
|
|||||||
"\
|
"\
|
||||||
[COMPILING] {name} v{version} ([CWD])
|
[COMPILING] {name} v{version} ([CWD])
|
||||||
[RUNNING] `rustc --crate-name {name} src/lib.rs [..]--crate-type lib \
|
[RUNNING] `rustc --crate-name {name} src/lib.rs [..]--crate-type lib \
|
||||||
--emit=[..]link -C debuginfo=2 \
|
--emit=[..]link[..]-C debuginfo=2 \
|
||||||
-C metadata=[..] \
|
-C metadata=[..] \
|
||||||
--out-dir [..] \
|
--out-dir [..] \
|
||||||
-L dependency=[CWD]/target/debug/deps`
|
-L dependency=[CWD]/target/debug/deps`
|
||||||
[RUNNING] `rustc --crate-name {name} src/main.rs [..]--crate-type bin \
|
[RUNNING] `rustc --crate-name {name} src/main.rs [..]--crate-type bin \
|
||||||
--emit=[..]link -C debuginfo=2 \
|
--emit=[..]link[..]-C debuginfo=2 \
|
||||||
-C debug-assertions \
|
-C debug-assertions \
|
||||||
-C metadata=[..] \
|
-C metadata=[..] \
|
||||||
--out-dir [..] \
|
--out-dir [..] \
|
||||||
@ -108,10 +108,10 @@ fn build_with_args_to_one_of_multiple_binaries() {
|
|||||||
.with_stderr(
|
.with_stderr(
|
||||||
"\
|
"\
|
||||||
[COMPILING] foo v0.0.1 ([CWD])
|
[COMPILING] foo v0.0.1 ([CWD])
|
||||||
[RUNNING] `rustc --crate-name foo src/lib.rs [..]--crate-type lib --emit=[..]link \
|
[RUNNING] `rustc --crate-name foo src/lib.rs [..]--crate-type lib --emit=[..]link[..]\
|
||||||
-C debuginfo=2 -C metadata=[..] \
|
-C debuginfo=2 -C metadata=[..] \
|
||||||
--out-dir [..]`
|
--out-dir [..]`
|
||||||
[RUNNING] `rustc --crate-name bar src/bin/bar.rs [..]--crate-type bin --emit=[..]link \
|
[RUNNING] `rustc --crate-name bar src/bin/bar.rs [..]--crate-type bin --emit=[..]link[..]\
|
||||||
-C debuginfo=2 -C debug-assertions [..]`
|
-C debuginfo=2 -C debug-assertions [..]`
|
||||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||||
",
|
",
|
||||||
@ -147,10 +147,10 @@ fn build_with_args_to_one_of_multiple_tests() {
|
|||||||
.with_stderr(
|
.with_stderr(
|
||||||
"\
|
"\
|
||||||
[COMPILING] foo v0.0.1 ([CWD])
|
[COMPILING] foo v0.0.1 ([CWD])
|
||||||
[RUNNING] `rustc --crate-name foo src/lib.rs [..]--crate-type lib --emit=[..]link \
|
[RUNNING] `rustc --crate-name foo src/lib.rs [..]--crate-type lib --emit=[..]link[..]\
|
||||||
-C debuginfo=2 -C metadata=[..] \
|
-C debuginfo=2 -C metadata=[..] \
|
||||||
--out-dir [..]`
|
--out-dir [..]`
|
||||||
[RUNNING] `rustc --crate-name bar tests/bar.rs [..]--emit=[..]link -C debuginfo=2 \
|
[RUNNING] `rustc --crate-name bar tests/bar.rs [..]--emit=[..]link[..]-C debuginfo=2 \
|
||||||
-C debug-assertions [..]--test[..]`
|
-C debug-assertions [..]--test[..]`
|
||||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||||
",
|
",
|
||||||
@ -261,7 +261,7 @@ fn targets_selected_all() {
|
|||||||
)
|
)
|
||||||
// unit test
|
// unit test
|
||||||
.with_stderr_contains(
|
.with_stderr_contains(
|
||||||
"[RUNNING] `rustc --crate-name foo src/main.rs [..]--emit=[..]link \
|
"[RUNNING] `rustc --crate-name foo src/main.rs [..]--emit=[..]link[..]\
|
||||||
-C debuginfo=2 --test [..]",
|
-C debuginfo=2 --test [..]",
|
||||||
)
|
)
|
||||||
.run();
|
.run();
|
||||||
|
@ -6,6 +6,12 @@ use std::env;
|
|||||||
|
|
||||||
#[cargo_test]
|
#[cargo_test]
|
||||||
fn rustc_info_cache() {
|
fn rustc_info_cache() {
|
||||||
|
// TODO: need to gate this on nightly as soon as -Cembed-bitcode lands in
|
||||||
|
// nightly
|
||||||
|
if true {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
let p = project()
|
let p = project()
|
||||||
.file("src/main.rs", r#"fn main() { println!("hello"); }"#)
|
.file("src/main.rs", r#"fn main() { println!("hello"); }"#)
|
||||||
.build();
|
.build();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user