Skip to content

[5.1 06-12-2019] Disable remaining stdlib/ModelIO tests #25570

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

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 16 additions & 8 deletions validation-test/stdlib/ModelIO.swift
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ if #available(OSX 10.13, iOS 11.0, tvOS 11.0, *) {
}
}

ModelIOTests.test("MDLAnimatedVector2/accessors") {
ModelIOTests.test("MDLAnimatedVector2/accessors")
.skip(.always("rdar://problem/50449570")).code {
let animatedVal = MDLAnimatedVector2()
let testCount = 10
let testTimeVal = 5.0
Expand Down Expand Up @@ -67,7 +68,8 @@ if #available(OSX 10.13, iOS 11.0, tvOS 11.0, *) {
}
}

ModelIOTests.test("MDLAnimatedVector3/accessors") {
ModelIOTests.test("MDLAnimatedVector3/accessors")
.skip(.always("rdar://problem/50449570")).code {
let animatedVal = MDLAnimatedVector3()
let testCount = 10
let testTimeVal = 5.0
Expand Down Expand Up @@ -98,7 +100,8 @@ if #available(OSX 10.13, iOS 11.0, tvOS 11.0, *) {
}
}

ModelIOTests.test("MDLAnimatedVector4/accessors") {
ModelIOTests.test("MDLAnimatedVector4/accessors")
.skip(.always("rdar://problem/50449570")).code {
let animatedVal = MDLAnimatedVector4()
let testCount = 10
let testTimeVal = 5.0
Expand Down Expand Up @@ -131,7 +134,8 @@ if #available(OSX 10.13, iOS 11.0, tvOS 11.0, *) {
}
}

ModelIOTests.test("MDLAnimatedMatrix4x4/accessors") {
ModelIOTests.test("MDLAnimatedMatrix4x4/accessors")
.skip(.always("rdar://problem/50449570")).code {
let animatedVal = MDLAnimatedMatrix4x4()
let testCount = 10
let testTimeVal = 5.0
Expand Down Expand Up @@ -166,7 +170,8 @@ if #available(OSX 10.13, iOS 11.0, tvOS 11.0, *) {
}
}

ModelIOTests.test("MDLMatrix4x4Array/accessors") {
ModelIOTests.test("MDLMatrix4x4Array/accessors")
.skip(.always("rdar://problem/50449570")).code {
let testCount = 10
let matrixArray = MDLMatrix4x4Array(elementCount: testCount)
let testFloatVal = float4x4()
Expand Down Expand Up @@ -196,7 +201,8 @@ if #available(OSX 10.13, iOS 11.0, tvOS 11.0, *) {
}
}

ModelIOTests.test("MDLAnimatedScalarArray/accessors") {
ModelIOTests.test("MDLAnimatedScalarArray/accessors")
.skip(.always("rdar://problem/50449570")).code {
let elementCount = 10
let animatedVal = MDLAnimatedScalarArray(elementCount: elementCount)
let subCount = 2
Expand Down Expand Up @@ -240,7 +246,8 @@ if #available(OSX 10.13, iOS 11.0, tvOS 11.0, *) {
}
}

ModelIOTests.test("MDLAnimatedQuaternionArray/accessors") {
ModelIOTests.test("MDLAnimatedQuaternionArray/accessors")
.skip(.always("rdar://problem/50449570")).code {
let elementCount = 10
let testCount = 10
let totalCount = elementCount * testCount
Expand Down Expand Up @@ -283,7 +290,8 @@ if #available(OSX 10.13, iOS 11.0, tvOS 11.0, *) {
}
}

ModelIOTests.test("MDLAnimatedVector3Array/accessors") {
ModelIOTests.test("MDLAnimatedVector3Array/accessors")
.skip(.always("rdar://problem/50449570")).code {
let elementCount = 10
let animatedVal = MDLAnimatedVector3Array(elementCount: elementCount)
let testCount = 10
Expand Down