//@ revisions: NINETEEN TWENTY //@[NINETEEN] min-llvm-version: 19 //@[NINETEEN] ignore-llvm-version: 20-99 //@[TWENTY] min-llvm-version: 20 we should allow the test writer to specify a //@ only-llvm-major-version: 19 which will only run the test if the llvm's major version ...
let version = extract_llvm_version(&version_string); if actual_version.major != version.major { return IgnoreDecision::Ignore { reason: format!( "ignored when the actual LLVM major version is {}, but the test only targets major version {}", actual_version.major, version.major ...
2 changes: 1 addition & 1 deletion 2 llvm/CMakeLists.txt Original file line numberDiff line numberDiff line change @@ -16,7 +16,7 @@ endif() set(CMAKE_BUILD_WITH_INSTALL_NAME_DIR ON) if(NOT DEFINED LLVM_VERSION_MAJOR) set(LLVM_VERSION_MAJOR 15) set(LLVM_VERSION_MAJOR 16) endif...
- Update the `actions/download-artifact` action to version 3. - Use the major version of an action instead of specifying the minor or patch versions. Differential Revision: https://reviews.llvm.org/D148327main llvm-mos-windows-debug … llvm-mos-darwin-debug Vol...
Now contributors don't need to use min-llvm-version: X + ignore-llvm-version: X+1 - 99, so they can simply use exact-llvm-version: X To be honest, I didn't find any usages of that hack other than the one mentioned in the issue. ( tests/codegen/try_question_mark_nop.rs) Closes...
Now contributors don't need to use min-llvm-version: X + ignore-llvm-version: X+1 - 99, so they can simply use exact-llvm-major-version: X To be honest, I didn't find any usages of that hack other than the one mentioned in the issue. ( tests/codegen/tr