Skip to content

Commit

Permalink
Skip more tests
Browse files Browse the repository at this point in the history
  • Loading branch information
marcosgriselli committed Oct 24, 2024
1 parent e08e40a commit 6df7ab6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions Tests/PerformanceTests/PerformanceTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,11 @@ class FixturePerformanceTests: XCTestCase {
}

func testFixtureGeneration() throws {
#if os(Linux) && swift(<6.0.2)
// https://github.com/swiftlang/swift-foundation/pull/1002
throw XCTSkip("Skipping test on Linux until PropertyListDecoder issues are fixed.")
#endif

let project = try Project(path: specPath)
measure {
let generator = ProjectGenerator(project: project)
Expand All @@ -70,6 +75,11 @@ class FixturePerformanceTests: XCTestCase {
}

func testFixtureWriting() throws {
#if os(Linux) && swift(<6.0.2)
// https://github.com/swiftlang/swift-foundation/pull/1002
throw XCTSkip("Skipping test on Linux until PropertyListDecoder issues are fixed.")
#endif

let project = try Project(path: specPath)
let generator = ProjectGenerator(project: project)
let xcodeProject = try generator.generateXcodeProject(userName: "someUser")
Expand Down
2 changes: 1 addition & 1 deletion Tests/XcodeGenKitTests/SourceGeneratorTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class SourceGeneratorTests: XCTestCase {

func testSourceGenerator() throws {
#if os(Linux) && swift(<6.0.2)
// https://github.com/swiftlang/swift-foundation/pull/1002
// https://github.com/swiftlang/swift-foundation/pull/1002
throw XCTSkip("Skipping test on Linux until PropertyListDecoder issues are fixed.")
#endif
describe {
Expand Down

0 comments on commit 6df7ab6

Please sign in to comment.