Skip to content

Commit 00ef34a

Browse files
committed
Update diverged tests
1 parent 27fa054 commit 00ef34a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lldb/test/API/lang/swift/expression/generic_function_name/TestSwiftGenericFunctionName.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def test(self):
2525
stream = lldb.SBStream()
2626
bkpt.GetLocationAtIndex(0).GetDescription(stream, 1)
2727
desc = stream.GetData()
28-
self.assertIn("C.f<T>(T, U) -> ()", desc)
28+
self.assertIn("C.f<T>(_:_:)", desc)
2929

3030
# Demangling only:
3131
fs = target.FindFunctions("f")

lldb/test/Shell/SwiftREPL/BreakpointSimple.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ func foo() -> Int {
77
}
88

99
:b foo
10-
// CHECK: Breakpoint 1: {{.*}}foo() -> Swift.Int {{.*}} repl.swift:6:3, address = 0x
10+
// CHECK: Breakpoint 1: {{.*}}foo() {{.*}} repl.swift:6:3, address = 0x
1111

1212
// CHECK: Execution stopped at breakpoint
1313
foo()

0 commit comments

Comments
 (0)