Expand the test.rs test by default

This commit is contained in:
David Tolnay 2016-12-23 11:29:16 -05:00
parent a188357308
commit bb1e9bdba2
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -134,14 +134,21 @@ fn wrap_args<T, I>(it: I) -> Vec<String>
let mut args = vec!["rustc".to_string()];
let mut has_color = false;
let mut has_double_hyphen = false;
let mut ends_with_test = false;
for arg in it.into_iter().skip(2) {
let arg = arg.as_ref().to_string();
has_color |= arg.starts_with("--color");
has_double_hyphen |= arg == "--";
ends_with_test = arg == "--test";
args.push(arg);
}
if !has_double_hyphen && ends_with_test {
// Expand the `test.rs` test by default.
args.push("test".to_string());
}
if !has_color {
let color = stdout_isatty() && stderr_isatty();
let setting = if color { "always" } else { "never" };