diff options
| author | bors <bors@rust-lang.org> | 2023-08-10 04:36:51 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2023-08-10 04:36:51 +0000 |
| commit | abc910be6ff735abe063b27675f19a2e5e16ea7b (patch) | |
| tree | 96e7c5b597d39bb494557036bf037caef85d9071 /src/tools | |
| parent | fd1698860086db56e047f38d74337cf24dac5f24 (diff) | |
| parent | 0b16456efa95060beedb0e2fe1ed0aa5fa1b7e02 (diff) | |
| download | rust-abc910be6ff735abe063b27675f19a2e5e16ea7b.tar.gz rust-abc910be6ff735abe063b27675f19a2e5e16ea7b.zip | |
Auto merge of #114001 - meysam81:issue-111894-fix, r=clubby789
fix(bootstrap): rename exclude flag to skip 🐛 fixes #111894
Diffstat (limited to 'src/tools')
| -rw-r--r-- | src/tools/opt-dist/src/main.rs | 2 | ||||
| -rw-r--r-- | src/tools/opt-dist/src/tests.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/opt-dist/src/main.rs b/src/tools/opt-dist/src/main.rs index f6edd008845..8ab19674d05 100644 --- a/src/tools/opt-dist/src/main.rs +++ b/src/tools/opt-dist/src/main.rs @@ -197,7 +197,7 @@ fn main() -> anyhow::Result<()> { "miri", "rustfmt", ] { - build_args.extend(["--exclude".to_string(), target.to_string()]); + build_args.extend(["--skip".to_string(), target.to_string()]); } } diff --git a/src/tools/opt-dist/src/tests.rs b/src/tools/opt-dist/src/tests.rs index c85418baecd..3dd1a3223f5 100644 --- a/src/tools/opt-dist/src/tests.rs +++ b/src/tools/opt-dist/src/tests.rs @@ -96,7 +96,7 @@ llvm-config = "{llvm_config}" "tests/ui", ]; for test_path in env.skipped_tests() { - args.extend(["--exclude", test_path]); + args.extend(["--skip", test_path]); } cmd(&args).env("COMPILETEST_FORCE_STAGE0", "1").run().context("Cannot execute tests") } |
