Skip to content

Commit 76a48a9

Browse files
committed
Propagate --color option to rustc
1 parent 761ea2d commit 76a48a9

File tree

3 files changed

+49
-0
lines changed

3 files changed

+49
-0
lines changed

src/cargo/core/shell.rs

+15
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,16 @@ pub enum ColorConfig {
2525
Never
2626
}
2727

28+
impl fmt::Display for ColorConfig {
29+
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
30+
match *self {
31+
ColorConfig::Auto => "auto",
32+
ColorConfig::Always => "always",
33+
ColorConfig::Never => "never",
34+
}.fmt(f)
35+
}
36+
}
37+
2838
#[derive(Clone, Copy)]
2939
pub struct ShellConfig {
3040
pub color_config: ColorConfig,
@@ -129,6 +139,11 @@ impl MultiShell {
129139
pub fn get_verbose(&self) -> Verbosity {
130140
self.verbosity
131141
}
142+
143+
pub fn color_config(&self) -> ColorConfig {
144+
assert!(self.out.config.color_config == self.err.config.color_config);
145+
self.out.config.color_config
146+
}
132147
}
133148

134149
impl Shell {

src/cargo/ops/cargo_rustc/mod.rs

+6
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ use std::sync::Arc;
77

88
use core::{Package, PackageId, PackageSet, Target, Resolve};
99
use core::{Profile, Profiles};
10+
use core::shell::ColorConfig;
1011
use util::{self, CargoResult, human};
1112
use util::{Config, internal, ChainError, profile, join_paths};
1213

@@ -461,6 +462,11 @@ fn build_base_args(cx: &Context,
461462

462463
cmd.arg(&root_path(cx, unit));
463464

465+
let color_config = cx.config.shell().color_config();
466+
if color_config != ColorConfig::Auto {
467+
cmd.arg("--color").arg(&color_config.to_string());
468+
}
469+
464470
cmd.arg("--crate-name").arg(&unit.target.crate_name());
465471

466472
for crate_type in crate_types.iter() {

tests/build.rs

+28
Original file line numberDiff line numberDiff line change
@@ -2212,3 +2212,31 @@ fn panic_abort_compiles_with_panic_abort() {
22122212
execs().with_status(0)
22132213
.with_stderr_contains("[..] -C panic=abort [..]"));
22142214
}
2215+
2216+
#[test]
2217+
fn explicit_color_config_is_propagated_to_rustc() {
2218+
let mut p = project("foo");
2219+
p = p
2220+
.file("Cargo.toml", r#"
2221+
[package]
2222+
2223+
name = "test"
2224+
version = "0.0.0"
2225+
authors = []
2226+
"#)
2227+
.file("src/lib.rs", "");
2228+
2229+
assert_that(p.cargo_process("build").arg("-v").arg("--color").arg("always"),
2230+
execs().with_status(0).with_stderr_contains(
2231+
"[..]rustc src[..]lib.rs --color always[..]"));
2232+
2233+
assert_that(p.cargo_process("build").arg("-v").arg("--color").arg("never"),
2234+
execs().with_status(0).with_stderr("\
2235+
[COMPILING] test v0.0.0 ([..])
2236+
[RUNNING] `rustc src[..]lib.rs --color never --crate-name test --crate-type lib -g \
2237+
--out-dir [..]target[..]debug \
2238+
--emit=dep-info,link \
2239+
-L dependency=[..]target[..]debug \
2240+
-L dependency=[..]target[..]debug[..]deps`
2241+
"));
2242+
}

0 commit comments

Comments
 (0)