File tree Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -981,13 +981,9 @@ CastsTests.test("Recursive AnyHashable") {
981
981
// https://github.com/apple/swift/issues/56987
982
982
#if _runtime(_ObjC)
983
983
CastsTests . test ( " Do not overuse __SwiftValue " )
984
- . skip ( . osxAny( " Not yet fully enabled for Apple OSes " ) )
985
- . skip ( . iOSAny( " Not yet fully enabled for Apple OSes " ) )
986
- . skip ( . iOSSimulatorAny( " Not yet fully enabled for Apple OSes " ) )
987
- . skip ( . tvOSAny( " Not yet fully enabled for Apple OSes " ) )
988
- . skip ( . tvOSSimulatorAny( " Not yet fully enabled for Apple OSes " ) )
989
- . skip ( . watchOSAny( " Not yet fully enabled for Apple OSes " ) )
990
- . skip ( . watchOSSimulatorAny( " Not yet fully enabled for Apple OSes " ) )
984
+ . skip ( . custom( {
985
+ if #available( SwiftStdlib 5 . 9 , * ) { return false } else { return true }
986
+ } , reason: " Requires stdlib from Swift 5.9 or later " ) )
991
987
. code {
992
988
struct Bar { }
993
989
// This used to succeed because of overeager __SwiftValue
You can’t perform that action at this time.
0 commit comments