Expand the example.rs example by default

This commit is contained in:
David Tolnay 2016-12-23 20:19:57 -05:00
parent 7d3e1cf275
commit 4198318bc7
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -139,12 +139,14 @@ fn wrap_args<T, I>(it: I) -> Vec<String>
let mut has_color = false;
let mut has_double_hyphen = false;
let mut ends_with_test = false;
let mut ends_with_example = 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";
ends_with_example = arg == "--example";
args.push(arg);
}
@ -153,6 +155,11 @@ fn wrap_args<T, I>(it: I) -> Vec<String>
args.push("test".to_string());
}
if !has_double_hyphen && ends_with_example {
// Expand the `example.rs` example by default.
args.push("example".to_string());
}
if !has_color {
let color = stdout_isatty() && stderr_isatty();
let setting = if color { "always" } else { "never" };