mirror of
https://github.com/dtolnay/cargo-expand.git
synced 2025-04-03 21:07:37 +03:00
Expand the test.rs test by default
This commit is contained in:
parent
a188357308
commit
bb1e9bdba2
1 changed files with 7 additions and 0 deletions
|
@ -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" };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue