Skip to content

Commit d3950e5

Browse files
committed
[nfc] Disable some method tests on Windows.
1 parent 47064a0 commit d3950e5

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

test/Interop/Cxx/templates/dependent-types.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ DependentTypesTestSuite.test("Multiple dependent arguments (not inferred).") {
3535
expectEqual(m.getValue(), 42)
3636
}
3737

38+
// We still have some problems calling methods on Windows: SR-13129 and rdar://88391102
39+
#if !os(Windows)
3840
DependentTypesTestSuite.test("Function template methods") {
3941
let m = M<Int>(value: 42)
4042
let m2 = m.memberDependentReturnType(CInt(32)) as! M<CInt>
@@ -57,5 +59,6 @@ DependentTypesTestSuite.test("Function template methods (static)") {
5759
let m2 = M<Int>.memberDependentReturnTypeStatic(CInt(32)) as! M<CInt>
5860
expectEqual(m2.getValue(), 32)
5961
}
62+
#endif // Windows
6063

6164
runAllTests()

0 commit comments

Comments
 (0)