Skip to content

Commit

Permalink
Skip failing test on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
marcosgriselli committed Oct 24, 2024
1 parent 2cf88e8 commit e08e40a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Tests/XcodeGenKitTests/SourceGeneratorTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@ import TestSupport

class SourceGeneratorTests: XCTestCase {

func testSourceGenerator() {
func testSourceGenerator() 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
describe {

let directoryPath = Path("TestDirectory")
Expand Down

0 comments on commit e08e40a

Please sign in to comment.