-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
compiletest: add max-llvm-major-version
directive
#132310
Conversation
All reactions
-
❤️ 1 reaction
This comment was marked as resolved.
This comment was marked as resolved.
Not mandatory, but consider also editing the ~5 tests that currently use the N-99 pattern, so that the new directive is actually used. |
All reactions
Sorry, something went wrong.
src/tools/compiletest/src/header.rs
Outdated
// Ignore if actual version is smaller the minimum required | ||
// version | ||
if let Some(value) = config.parse_name_value_directive(line, "min-llvm-version") { | ||
let value = value.trim(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remark: Separate from this PR, we should just make the parse functions trim automatically. I can't imagine a legitimate use-case for directives actually wanting to see untrimmed whitespace.
Sorry, something went wrong.
All reactions
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I didn't want to touch that in the current directive handling, tbh. I prefer we just redo this entirely.
Sorry, something went wrong.
All reactions
-
👍 1 reaction
This comment was marked as resolved.
This comment was marked as resolved.
Good point, I'll update existing tests. |
All reactions
Sorry, something went wrong.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
aae8f1d
to
b6a7cca
Compare
max-llvm-version
directivemax-llvm-major-version
directive
Changes since last force push:
|
All reactions
Sorry, something went wrong.
Not sure if this is a good idea or not, but another possibility would be to reframe the directive as something like In practice, I think a lot of the real-world uses of this directive are going to be along the lines of “this doesn't work on LLVM 21”, in which case |
All reactions
Sorry, something went wrong.
We could also just use a semver version range: (But that is also quite obscure, just musing) |
All reactions
Sorry, something went wrong.
…nur-ozkan compiletest: improve robustness of LLVM version handling Previously, `extract_llvm_versions` did some gymnastics for llvm versions by combining `(major, minor, patch)` into a combined version integer, but that is not very robust and made it difficult to add `max-llvm-major-version`. This PR tries to: - Improve llvm version handling robustness by parsing and representing the version as a semver. We intentionally deviate from strict semver standards by allowing omission of minor and patch versions. They default to `0` when absent. This is for convenience to allow the user to write e.g. `//@ min-llvm-version: 18` instead of having to spell out the full `major.minor.patch` semver string `//@ min-llvm-verison: 18.0.0`. - Adjust some panic messages to include a bit more context about *why* the version string was rejected. Prerequisite for rust-lang#132310. r? bootstrap (or compiler)
Rollup merge of rust-lang#132315 - jieyouxu:extract-llvm-version, r=onur-ozkan compiletest: improve robustness of LLVM version handling Previously, `extract_llvm_versions` did some gymnastics for llvm versions by combining `(major, minor, patch)` into a combined version integer, but that is not very robust and made it difficult to add `max-llvm-major-version`. This PR tries to: - Improve llvm version handling robustness by parsing and representing the version as a semver. We intentionally deviate from strict semver standards by allowing omission of minor and patch versions. They default to `0` when absent. This is for convenience to allow the user to write e.g. `//@ min-llvm-version: 18` instead of having to spell out the full `major.minor.patch` semver string `//@ min-llvm-verison: 18.0.0`. - Adjust some panic messages to include a bit more context about *why* the version string was rejected. Prerequisite for rust-lang#132310. r? bootstrap (or compiler)
b6a7cca
to
f41e1cf
Compare
Hm, I feel like I forgot to set this as ready, lol. @rustbot ready |
All reactions
Sorry, something went wrong.
This comment was marked as resolved.
This comment was marked as resolved.
r? bootstrap |
All reactions
Sorry, something went wrong.
@bors r+ |
All reactions
Sorry, something went wrong.
☔ The latest upstream changes (presumably #133006) made this pull request unmergeable. Please resolve the merge conflicts. |
All reactions
Sorry, something went wrong.
There's already `min-llvm-version`, and contributors were using `ignore-llvm-version: 20 - 99` to emulate `max-llvm-major-version: 19`.
…range like `N - 99` For tests that use `ignore-llvm-version: N - M`, replace that with `max-llvm-major-version: N-1`.
f41e1cf
to
91fa16b
Compare
Just whitespace conflicts. @bors r=onur-ozkan |
All reactions
Sorry, something went wrong.
…llaumeGomez Rollup of 5 pull requests Successful merges: - rust-lang#132010 (ci: Enable full `debuginfo-level=2` in `DEPLOY_ALT`) - rust-lang#132310 (compiletest: add `max-llvm-major-version` directive) - rust-lang#132773 (PassWrapper: disable UseOdrIndicator for Asan Win32) - rust-lang#133013 (compiletest: known-bug / crashes: allow for an "auxiliary" directory to contain files that do not have a "known-bug" directive) - rust-lang#133027 (Fix a copy-paste issue in the NuttX raw type definition) r? `@ghost` `@rustbot` modify labels: rollup
Rollup merge of rust-lang#132310 - jieyouxu:max-llvm-version, r=onur-ozkan compiletest: add `max-llvm-major-version` directive To complement existing `min-llvm-version` so contributors don't have to use `ignore-llvm-version: 20 - 99` to emulate `max-llvm-major-version: 19`. Closes rust-lang#132305. cc `@workingjubilee` who suggested this. ### Implementation steps - [x] 1. Implement the directive (this PR) - [x] 2. Open an accompanying dev-guide PR to describe the directive (rust-lang/rustc-dev-guide#2129) r? bootstrap
nikic
Zalathar
onur-ozkan
Successfully merging this pull request may close these issues.
compiletest: addmax-llvm-major-version
directive
To complement existing
min-llvm-version
so contributors don't have to useignore-llvm-version: 20 - 99
to emulatemax-llvm-major-version: 19
.Closes #132305.
cc @workingjubilee who suggested this.
Implementation steps
max-llvm-major-version
directive rustc-dev-guide#2129)r? bootstrap