-
Notifications
You must be signed in to change notification settings - Fork 10.5k
[Tests] Make OS features consistent #58975
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
Conversation
b01c6a4
to
a871e14
Compare
@swift-ci please test |
...untime/distributed_actor_cross_module_final_class_adhoc_requirement_not_optimized_away.swift
Show resolved
Hide resolved
a871e14
to
86162b9
Compare
@swift-ci please test |
86162b9
to
f2938c4
Compare
@swift-ci please test |
@shahmishal I had a look at the counts: Edit: Going to separate re-enabling to a different PR to avoid confusion in this one. |
f2938c4
to
04becae
Compare
@swift-ci please test Windows platform |
lit.py currently allows any substring of `target_triple` to be used as a feature in REQUIRES/UNSUPPORTED/XFAIL. This results in various forms of the OS spread across the tests and is also somewhat confusing since they aren't actually listed in the available features. Modify all OS-related features to use the `OS=` version that Swift adds instead. We can later remove `config.target_triple` so that these don't the non-OS versions don't work in the first place.
04becae
to
05d33a4
Compare
@swift-ci please test Windows platform |
a5d4df9
to
c163e0f
Compare
@swift-ci please test |
@swift-ci please test Linux platform |
As far as I can tell all the counts are the same. Happy for me to merge @shahmishal @compnerd? |
Sure, if its no-op on the counts, lets merge it and clean up subsequently. |
- swiftlang#58975 switched many tests from XFAIL on linux to linux-gnu, so seven fail on the Android CI. They are now explicitly excluded. - swiftlang#42478 removed the @NoEscape attribute for the non-Android SIL/clang-function-types tests, so I remove it for Android too. - My pull swiftlang#40779 moved the Swift pointer tags to the second byte, so SILOptimizer/concat_string_literals.64 will need to be updated for that, disabled it for now. - Compiler-rt moved the directory in which it places those libraries for Android, llvm/llvm-project@a68ccba, so lit.cfg is updated for that.
- swiftlang#58975 switched many tests from XFAIL on linux to linux-gnu, so seven fail on the Android CI. They are now explicitly excluded. - swiftlang#42478 removed the @NoEscape attribute for the non-Android SIL/clang-function-types tests, so I remove it for Android too. - My pull swiftlang#40779 moved the Swift pointer tags to the second byte, so SILOptimizer/concat_string_literals.64 will need to be updated for that, disabled it for now. - Compiler-rt moved the directory in which it places those libraries for Android, llvm/llvm-project@a68ccba, so lit.cfg is updated for that.
- swiftlang#58975 switched many tests from XFAIL on linux to linux-gnu, so seven fail on the Android CI and two natively. They are now explicitly excluded. - swiftlang#39605 added several C++ Interop tests, 11 of which fail on the Android CI, so disable them for now. - swiftlang#42478 removed the @NoEscape attribute for the non-Android SIL/clang-function-types tests, so I remove it for Android too. - My pull swiftlang#40779 moved the Swift pointer tags to the second byte, so SILOptimizer/concat_string_literals.64 will need to be updated for that, disabled it for now. - Compiler-rt moved the directory in which it places those libraries for Android, llvm/llvm-project@a68ccba, so lit.cfg is updated for that.
lit.py currently allows any substring of
target_triple
to be used as afeature in REQUIRES/UNSUPPORTED/XFAIL. This results in various forms of
the OS spread across the tests and is also somewhat confusing since they
aren't actually listed in the available features.
Modify all OS-related features to use the
OS=
version that Swift addsinstead. We can later remove
config.target_triple
so that these don'tthe non-OS versions don't work in the first place.