-
Notifications
You must be signed in to change notification settings - Fork 12.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Restrict ignore-mode-*
directives
#131346
Conversation
rustbot has assigned @Mark-Simulacrum. Use |
This comment has been minimized.
This comment has been minimized.
ignore-mode-*
directivesignore-mode-*
directives
These are only valid for coverage test modes.
534bd72
to
64efbe2
Compare
Yeah, this seems reasonable. I implemented |
Thanks! @bors r+ rollup=always |
…iaskrgr Rollup of 4 pull requests Successful merges: - rust-lang#131331 (Revert "warn_old_master_branch" check) - rust-lang#131344 (Avoid `&Lrc<T>` in various places) - rust-lang#131346 (Restrict `ignore-mode-*` directives) - rust-lang#131353 (Add documentation for `runtest::check_rustdoc_test_option` method) r? `@ghost` `@rustbot` modify labels: rollup
Rollup merge of rust-lang#131346 - jieyouxu:prune-invalid-directives, r=Zalathar Restrict `ignore-mode-*` directives This is only used by coverage test suites where the same sources get run under different coverage modes. Restrict `ignore-mode-<coverage_mode>` to only coverage modes.
Simplify the compiletest directives for ignoring coverage-test modes Follow-up to rust-lang#131346. Given that these directives are now restricted to ignoring coverage-test modes only, we can drop the clunky `ignore-mode-*` naming convention, and just call them `ignore-coverage-map` and `ignore-coverage-run`. r? jieyouxu
Rollup merge of rust-lang#131400 - Zalathar:ignore-coverage, r=jieyouxu Simplify the compiletest directives for ignoring coverage-test modes Follow-up to rust-lang#131346. Given that these directives are now restricted to ignoring coverage-test modes only, we can drop the clunky `ignore-mode-*` naming convention, and just call them `ignore-coverage-map` and `ignore-coverage-run`. r? jieyouxu
…iaskrgr Rollup of 4 pull requests Successful merges: - rust-lang#131331 (Revert "warn_old_master_branch" check) - rust-lang#131344 (Avoid `&Lrc<T>` in various places) - rust-lang#131346 (Restrict `ignore-mode-*` directives) - rust-lang#131353 (Add documentation for `runtest::check_rustdoc_test_option` method) r? `@ghost` `@rustbot` modify labels: rollup
This is only used by coverage test suites where the same sources get run under different coverage modes. Restrict
ignore-mode-<coverage_mode>
to only coverage modes.