File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -991,9 +991,7 @@ DataTests.test("test_doubleDeallocation") { TestData().test_doubleDeallocation()
991
991
DataTests . test ( " test_repeatingValueInitialization " ) { TestData ( ) . test_repeatingValueInitialization ( ) }
992
992
993
993
// XCTest does not have a crash detection, whereas lit does
994
- DataTests . test ( " bounding failure subdata " )
995
- . skip ( . always( " fails with resilient stdlib (rdar://problem/30560514) " ) )
996
- . code {
994
+ DataTests . test ( " bounding failure subdata " ) {
997
995
let data = " Hello World " . data ( using: . utf8) !
998
996
expectCrashLater ( )
999
997
let c = data. subdata ( in: 5 ..< 200 )
@@ -1051,7 +1049,9 @@ DataTests.test("bounding failure append absurd length") {
1051
1049
data. append ( " hello " , count: Int . min)
1052
1050
}
1053
1051
1054
- DataTests . test ( " bounding failure subscript " ) {
1052
+ DataTests . test ( " bounding failure subscript " )
1053
+ . skip ( . always( " fails with resilient stdlib (rdar://problem/30560514) " ) )
1054
+ . code {
1055
1055
var data = " Hello World " . data ( using: . utf8) !
1056
1056
expectCrashLater ( )
1057
1057
data [ 100 ] = 4
You can’t perform that action at this time.
0 commit comments