Skip to content

Commit 809587a

Browse files
committed
Enable newly passing tests after fixing Swift Build response file format issues
1 parent 7ad4f83 commit 809587a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Tests/FunctionalTests/CFamilyTargetTests.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ fileprivate func expectDirectoryContainsFile(
4848
)
4949
struct CFamilyTargetTestCase {
5050
@Test(
51-
.issue("https://github.com/swiftlang/swift-build/issues/333", relationship: .defect),
51+
.IssueWindowsLongPath,
5252
.tags(
5353
.Feature.Command.Build,
5454
.Feature.SpecialCharacters,
@@ -73,7 +73,7 @@ struct CFamilyTargetTestCase {
7373
}
7474
}
7575
} when: {
76-
data.buildSystem == .swiftbuild
76+
ProcessInfo.hostOperatingSystem == .windows && data.buildSystem == .swiftbuild
7777
}
7878
}
7979

Tests/FunctionalTests/TestDiscoveryTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ struct TestDiscoveryTests {
9696
#expect(stdout.contains("Executed 1 test"))
9797
}
9898
} when: {
99-
buildSystem == .swiftbuild && [.windows, .macOS].contains(ProcessInfo.hostOperatingSystem)
99+
buildSystem == .swiftbuild && [.windows].contains(ProcessInfo.hostOperatingSystem)
100100
}
101101
}
102102

0 commit comments

Comments
 (0)