Skip to content

Commit 9aaee4d

Browse files
authored
Merge pull request #9561 from swiftlang/egorzhdan/20240723-cxx-interop-test
[cxx-interop][LLDB] Update test for variadic templates, part 1
2 parents 5b19506 + 77f4603 commit 9aaee4d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lldb/test/API/lang/swift/cxx_interop/forward/variadic-template-types/TestSwiftForwardInteropVariadicTemplateTypes.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,9 @@ def test(self):
1717

1818
self.expect('frame var pair', substrs=['Pair', 'Tuple<OtherCxxClass>', '_t',
1919
'v = false', '_t', 'a1', '10', 'a2', '20', 'a3', '30'])
20-
self.expect('expr pair', substrs=['Pair', 'Tuple<OtherCxxClass>', '_t',
21-
'v = false', '_t', 'a1', '10', 'a2', '20', 'a3', '30'])
20+
# rdar://106459037 (Swift/C++ interop: Variadic templates aren't displayed correctly)
21+
# self.expect('expr pair', substrs=['Pair', 'Tuple<OtherCxxClass>', '_t',
22+
# 'v = false', '_t', 'a1', '10', 'a2', '20', 'a3', '30'])
2223

2324
# rdar://106459037 (Swift/C++ interop: Variadic templates aren't displayed correctly)
2425
# self.expect('frame var variadic', substrs=['Tuple<CxxClass, OtherCxxClass>', '_t',

0 commit comments

Comments
 (0)