diff options
| author | Joshua Nelson <jnelson@cloudflare.com> | 2022-07-31 18:25:09 -0500 |
|---|---|---|
| committer | Joshua Nelson <jnelson@cloudflare.com> | 2022-07-31 18:59:30 -0500 |
| commit | f8ed52f6fda7fea1e7045d4f5d9907ffaff6c392 (patch) | |
| tree | 2fae2536aebcab8baef7d993fc1cf939673387e4 /src/bootstrap/builder/tests.rs | |
| parent | e5a7d8f945f4259fb6b8c4953a65248243c054d1 (diff) | |
| download | rust-f8ed52f6fda7fea1e7045d4f5d9907ffaff6c392.tar.gz rust-f8ed52f6fda7fea1e7045d4f5d9907ffaff6c392.zip | |
Move `x test --skip` to be part of `--exclude`
`--skip` is inconsistent with the rest of the interface and redundant with `--exclude`. Fix --exclude to work properly for files and directories rather than having a separate flag. If someone needs to use --skip for something other than compiletest, they can use `--test-args --skip` instead.
Diffstat (limited to 'src/bootstrap/builder/tests.rs')
| -rw-r--r-- | src/bootstrap/builder/tests.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/bootstrap/builder/tests.rs b/src/bootstrap/builder/tests.rs index c084e77d3a9..280eba75f0c 100644 --- a/src/bootstrap/builder/tests.rs +++ b/src/bootstrap/builder/tests.rs @@ -547,7 +547,6 @@ mod dist { config.stage = 0; config.cmd = Subcommand::Test { paths: vec!["library/std".into()], - skip: vec![], test_args: vec![], rustc_args: vec![], fail_fast: true, @@ -618,7 +617,6 @@ mod dist { let mut config = configure(&["A"], &["A"]); config.cmd = Subcommand::Test { paths: vec![], - skip: vec![], test_args: vec![], rustc_args: vec![], fail_fast: true, |
