Skip to content

Commit e12d5ad

Browse files
committed
Auto merge of #2576 - alexcrichton:silence-warnings-with-q, r=brson
Don't print warnings when -q is passed Closes #2571
2 parents bf3f531 + 6759865 commit e12d5ad

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

src/cargo/core/shell.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,10 @@ impl MultiShell {
100100
}
101101

102102
pub fn warn<T: fmt::Display>(&mut self, message: T) -> CargoResult<()> {
103-
self.err().say_status("warning:", message, YELLOW, false)
103+
match self.verbosity {
104+
Quiet => Ok(()),
105+
_ => self.err().say_status("warning:", message, YELLOW, false),
106+
}
104107
}
105108

106109
pub fn set_verbosity(&mut self, verbosity: Verbosity) {

tests/test_cargo_install.rs

+15
Original file line numberDiff line numberDiff line change
@@ -644,3 +644,18 @@ test!(git_with_lockfile {
644644
assert_that(cargo_process("install").arg("--git").arg(p.url().to_string()),
645645
execs().with_status(0));
646646
});
647+
648+
test!(q_silences_warnings {
649+
let p = project("foo")
650+
.file("Cargo.toml", r#"
651+
[package]
652+
name = "foo"
653+
version = "0.1.0"
654+
authors = []
655+
"#)
656+
.file("src/main.rs", "fn main() {}");
657+
p.build();
658+
659+
assert_that(cargo_process("install").arg("-q").arg("--path").arg(p.root()),
660+
execs().with_status(0).with_stderr(""));
661+
});

0 commit comments

Comments
 (0)