Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions Tests/FunctionalTests/CFamilyTargetTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ fileprivate func expectDirectoryContainsFile(
)
struct CFamilyTargetTestCase {
@Test(
.issue("https://github.com/swiftlang/swift-build/issues/333", relationship: .defect),
.IssueWindowsLongPath,
.tags(
.Feature.Command.Build,
.Feature.SpecialCharacters,
Expand All @@ -73,7 +73,7 @@ struct CFamilyTargetTestCase {
}
}
} when: {
data.buildSystem == .swiftbuild
ProcessInfo.hostOperatingSystem == .windows && data.buildSystem == .swiftbuild
}
}

Expand Down
2 changes: 1 addition & 1 deletion Tests/FunctionalTests/TestDiscoveryTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ struct TestDiscoveryTests {
#expect(stdout.contains("Executed 1 test"))
}
} when: {
buildSystem == .swiftbuild && [.windows, .macOS].contains(ProcessInfo.hostOperatingSystem)
buildSystem == .swiftbuild && [.windows].contains(ProcessInfo.hostOperatingSystem)
}
}

Expand Down