Skip to content

Commit b6a44e4

Browse files
committed
[cxx-interop][LLDB] Update test for variadic templates, part 2
See 77f4603. rdar://106459037
1 parent ff89c01 commit b6a44e4

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,5 @@ def test(self):
2121
# self.expect('expr pair', substrs=['Pair', 'Tuple<OtherCxxClass>', '_t',
2222
# 'v = false', '_t', 'a1', '10', 'a2', '20', 'a3', '30'])
2323

24-
# rdar://106459037 (Swift/C++ interop: Variadic templates aren't displayed correctly)
25-
# self.expect('frame var variadic', substrs=['Tuple<CxxClass, OtherCxxClass>', '_t',
26-
# 'v = false', 'a1', '10', 'a2', '20', 'a3', '30'])
24+
self.expect('frame var variadic', substrs=['Tuple<OtherCxxClass, CxxClass>', '_t',
25+
'a1', '10', 'a2', '20', 'a3', '30', 'v = false'])

0 commit comments

Comments
 (0)