Skip to content

Commit 17bbe3a

Browse files
committed
remove skipped tests on linux
1 parent 490ee83 commit 17bbe3a

File tree

6 files changed

+0
-14
lines changed

6 files changed

+0
-14
lines changed

Sources/TestSupport/TestHelpers.swift

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -124,11 +124,3 @@ extension XCTestCase {
124124
describe(name, test)
125125
}
126126
}
127-
128-
129-
public func skipIfNecessary() throws {
130-
#if os(Linux) && swift(<6.0.2)
131-
// https://github.com/swiftlang/swift-foundation/pull/1002
132-
throw XCTSkip("Skipping test on Linux until PropertyListDecoder issues are fixed.")
133-
#endif
134-
}

Tests/FixtureTests/FixtureTests.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ import TestSupport
99
class FixtureTests: XCTestCase {
1010

1111
func testProjectFixture() throws {
12-
try skipIfNecessary()
1312
describe {
1413
$0.it("generates Test Project") {
1514
try generateXcodeProject(specPath: fixturePath + "TestProject/AnotherProject/project.yml")

Tests/PerformanceTests/PerformanceTests.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ class FixturePerformanceTests: XCTestCase {
6363
}
6464

6565
func testFixtureGeneration() throws {
66-
try skipIfNecessary()
6766
let project = try Project(path: specPath)
6867
measure {
6968
let generator = ProjectGenerator(project: project)
@@ -72,7 +71,6 @@ class FixturePerformanceTests: XCTestCase {
7271
}
7372

7473
func testFixtureWriting() throws {
75-
try skipIfNecessary()
7674
let project = try Project(path: specPath)
7775
let generator = ProjectGenerator(project: project)
7876
let xcodeProject = try generator.generateXcodeProject(userName: "someUser")

Tests/XcodeGenKitTests/ProjectGeneratorTests.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,6 @@ class ProjectGeneratorTests: XCTestCase {
276276
}
277277

278278
func testTargets() throws {
279-
try skipIfNecessary()
280279
describe {
281280

282281
let project = Project(name: "test", targets: targets)

Tests/XcodeGenKitTests/SchemeGeneratorTests.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ private let uiTest = Target(
4242
class SchemeGeneratorTests: XCTestCase {
4343

4444
func testSchemes() throws {
45-
try skipIfNecessary()
4645
describe {
4746

4847
let buildTarget = Scheme.BuildTarget(target: .local(app.name))

Tests/XcodeGenKitTests/SourceGeneratorTests.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import TestSupport
1010
class SourceGeneratorTests: XCTestCase {
1111

1212
func testSourceGenerator() throws {
13-
try skipIfNecessary()
1413
describe {
1514

1615
let directoryPath = Path("TestDirectory")

0 commit comments

Comments
 (0)