Skip to content

Commit 5831e8f

Browse files
committed
SwiftDriverTests: adjust module count on Windows
A recent refactoring for Windows increased the module count for the system modules and this resulted in the test suite failing due to the difference. This is technically backwards incompatible and expects that the most recent toolchain is in use but it seems unclear how to account for that easily.
1 parent b38ecd2 commit 5831e8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/SwiftDriverTests/ExplicitModuleBuildTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1128,7 +1128,7 @@ final class ExplicitModuleBuildTests: XCTestCase {
11281128
hostTriple.version(for: .macOS) >= Triple.Version(11, 0, 0) {
11291129
expectedNumberOfDependencies = 11
11301130
} else if driver.targetTriple.isWindows {
1131-
expectedNumberOfDependencies = 13
1131+
expectedNumberOfDependencies = 14
11321132
} else {
11331133
expectedNumberOfDependencies = 12
11341134
}

0 commit comments

Comments
 (0)