@@ -38,7 +38,8 @@ if #available(OSX 10.13, iOS 11.0, tvOS 11.0, *) {
38
38
}
39
39
}
40
40
41
- ModelIOTests . test ( " MDLAnimatedVector2/accessors " ) {
41
+ ModelIOTests . test ( " MDLAnimatedVector2/accessors " )
42
+ . skip ( . always( " rdar://problem/50449570 " ) ) . code {
42
43
let animatedVal = MDLAnimatedVector2 ( )
43
44
let testCount = 10
44
45
let testTimeVal = 5.0
@@ -67,7 +68,8 @@ if #available(OSX 10.13, iOS 11.0, tvOS 11.0, *) {
67
68
}
68
69
}
69
70
70
- ModelIOTests . test ( " MDLAnimatedVector3/accessors " ) {
71
+ ModelIOTests . test ( " MDLAnimatedVector3/accessors " )
72
+ . skip ( . always( " rdar://problem/50449570 " ) ) . code {
71
73
let animatedVal = MDLAnimatedVector3 ( )
72
74
let testCount = 10
73
75
let testTimeVal = 5.0
@@ -98,7 +100,8 @@ if #available(OSX 10.13, iOS 11.0, tvOS 11.0, *) {
98
100
}
99
101
}
100
102
101
- ModelIOTests . test ( " MDLAnimatedVector4/accessors " ) {
103
+ ModelIOTests . test ( " MDLAnimatedVector4/accessors " )
104
+ . skip ( . always( " rdar://problem/50449570 " ) ) . code {
102
105
let animatedVal = MDLAnimatedVector4 ( )
103
106
let testCount = 10
104
107
let testTimeVal = 5.0
@@ -131,7 +134,8 @@ if #available(OSX 10.13, iOS 11.0, tvOS 11.0, *) {
131
134
}
132
135
}
133
136
134
- ModelIOTests . test ( " MDLAnimatedMatrix4x4/accessors " ) {
137
+ ModelIOTests . test ( " MDLAnimatedMatrix4x4/accessors " )
138
+ . skip ( . always( " rdar://problem/50449570 " ) ) . code {
135
139
let animatedVal = MDLAnimatedMatrix4x4 ( )
136
140
let testCount = 10
137
141
let testTimeVal = 5.0
@@ -166,7 +170,8 @@ if #available(OSX 10.13, iOS 11.0, tvOS 11.0, *) {
166
170
}
167
171
}
168
172
169
- ModelIOTests . test ( " MDLMatrix4x4Array/accessors " ) {
173
+ ModelIOTests . test ( " MDLMatrix4x4Array/accessors " )
174
+ . skip ( . always( " rdar://problem/50449570 " ) ) . code {
170
175
let testCount = 10
171
176
let matrixArray = MDLMatrix4x4Array ( elementCount: testCount)
172
177
let testFloatVal = float4x4 ( )
@@ -196,7 +201,8 @@ if #available(OSX 10.13, iOS 11.0, tvOS 11.0, *) {
196
201
}
197
202
}
198
203
199
- ModelIOTests . test ( " MDLAnimatedScalarArray/accessors " ) {
204
+ ModelIOTests . test ( " MDLAnimatedScalarArray/accessors " )
205
+ . skip ( . always( " rdar://problem/50449570 " ) ) . code {
200
206
let elementCount = 10
201
207
let animatedVal = MDLAnimatedScalarArray ( elementCount: elementCount)
202
208
let subCount = 2
@@ -240,7 +246,8 @@ if #available(OSX 10.13, iOS 11.0, tvOS 11.0, *) {
240
246
}
241
247
}
242
248
243
- ModelIOTests . test ( " MDLAnimatedQuaternionArray/accessors " ) {
249
+ ModelIOTests . test ( " MDLAnimatedQuaternionArray/accessors " )
250
+ . skip ( . always( " rdar://problem/50449570 " ) ) . code {
244
251
let elementCount = 10
245
252
let testCount = 10
246
253
let totalCount = elementCount * testCount
@@ -283,7 +290,8 @@ if #available(OSX 10.13, iOS 11.0, tvOS 11.0, *) {
283
290
}
284
291
}
285
292
286
- ModelIOTests . test ( " MDLAnimatedVector3Array/accessors " ) {
293
+ ModelIOTests . test ( " MDLAnimatedVector3Array/accessors " )
294
+ . skip ( . always( " rdar://problem/50449570 " ) ) . code {
287
295
let elementCount = 10
288
296
let animatedVal = MDLAnimatedVector3Array ( elementCount: elementCount)
289
297
let testCount = 10
0 commit comments