@@ -1918,7 +1918,11 @@ SetTestSuite.test("BridgedFromObjC.Nonverbatim.Remove")
1918
1918
}
1919
1919
}
1920
1920
1921
- SetTestSuite . test ( " BridgedFromObjC.Verbatim.RemoveAll " ) {
1921
+ SetTestSuite . test ( " BridgedFromObjC.Verbatim.RemoveAll " )
1922
+ . skip (
1923
+ . stdlibOlderThan( . custom( 1001.0 ) ,
1924
+ reason: " https://github.com/apple/swift/pull/22527 " ) )
1925
+ . code {
1922
1926
do {
1923
1927
var s = getBridgedVerbatimSet ( [ ] )
1924
1928
expectTrue ( isCocoaSet ( s) )
@@ -2173,7 +2177,11 @@ SetTestSuite.test("BridgedFromObjC.Verbatim.EqualityTest_Empty") {
2173
2177
expectNotEqual ( s1, s2)
2174
2178
}
2175
2179
2176
- SetTestSuite . test ( " BridgedFromObjC.Nonverbatim.EqualityTest_Empty " ) {
2180
+ SetTestSuite . test ( " BridgedFromObjC.Nonverbatim.EqualityTest_Empty " )
2181
+ . skip (
2182
+ . stdlibOlderThan( . custom( 1001.0 ) ,
2183
+ reason: " https://github.com/apple/swift/pull/22527 " ) )
2184
+ . code {
2177
2185
let s1 = getBridgedNonverbatimSet ( [ ] )
2178
2186
let identity1 = s1. _rawIdentifier ( )
2179
2187
expectTrue ( isNativeSet ( s1) )
@@ -4618,6 +4626,9 @@ SetTestSuite.test("IndexValidation.RemoveAt.AfterGrow") {
4618
4626
4619
4627
#if _runtime(_ObjC)
4620
4628
SetTestSuite . test ( " ForcedNonverbatimBridge.Trap.String " )
4629
+ . skip (
4630
+ . stdlibOlderThan( . custom( 1001.0 ) ,
4631
+ reason: " https://github.com/apple/swift/pull/23174 " ) )
4621
4632
. skip ( . custom(
4622
4633
{ _isFastAssertConfiguration ( ) } ,
4623
4634
reason: " this trap is not guaranteed to happen in -Ounchecked " ) )
@@ -4639,6 +4650,9 @@ SetTestSuite.test("ForcedNonverbatimBridge.Trap.String")
4639
4650
4640
4651
#if _runtime(_ObjC)
4641
4652
SetTestSuite . test ( " ForcedNonverbatimBridge.Trap.Int " )
4653
+ . skip (
4654
+ . stdlibOlderThan( . custom( 1001.0 ) ,
4655
+ reason: " https://github.com/apple/swift/pull/23174 " ) )
4642
4656
. skip ( . custom(
4643
4657
{ _isFastAssertConfiguration ( ) } ,
4644
4658
reason: " this trap is not guaranteed to happen in -Ounchecked " ) )
@@ -4769,6 +4783,9 @@ SetTestSuite.test("ForcedVerbatimDowncast.Trap.Int")
4769
4783
4770
4784
#if _runtime(_ObjC)
4771
4785
SetTestSuite . test ( " ForcedBridgingNonverbatimDowncast.Trap.String " )
4786
+ . skip (
4787
+ . stdlibOlderThan( . custom( 1001.0 ) ,
4788
+ reason: " https://github.com/apple/swift/pull/23174 " ) )
4772
4789
. skip ( . custom(
4773
4790
{ _isFastAssertConfiguration ( ) } ,
4774
4791
reason: " this trap is not guaranteed to happen in -Ounchecked " ) )
@@ -4790,6 +4807,9 @@ SetTestSuite.test("ForcedBridgingNonverbatimDowncast.Trap.String")
4790
4807
4791
4808
#if _runtime(_ObjC)
4792
4809
SetTestSuite . test ( " ForcedBridgingNonverbatimDowncast.Trap.Int " )
4810
+ . skip (
4811
+ . stdlibOlderThan( . custom( 1001.0 ) ,
4812
+ reason: " https://github.com/apple/swift/pull/23174 " ) )
4793
4813
. skip ( . custom(
4794
4814
{ _isFastAssertConfiguration ( ) } ,
4795
4815
reason: " this trap is not guaranteed to happen in -Ounchecked " ) )
@@ -4811,7 +4831,11 @@ SetTestSuite.test("ForcedBridgingNonverbatimDowncast.Trap.Int")
4811
4831
#endif
4812
4832
4813
4833
#if _runtime(_ObjC)
4814
- SetTestSuite . test ( " Upcast.StringEqualityMismatch " ) {
4834
+ SetTestSuite . test ( " Upcast.StringEqualityMismatch " )
4835
+ . skip (
4836
+ . stdlibOlderThan( . custom( 1001.0 ) ,
4837
+ reason: " https://github.com/apple/swift/pull/23683 " ) )
4838
+ . code {
4815
4839
// Upcasting from NSString to String keys changes their concept of equality,
4816
4840
// resulting in two equal keys, one of which should be discarded by the
4817
4841
// downcast. (Along with its associated value.)
0 commit comments