8000 Fix test regex · swiftlang/llvm-project@1fe5cc8 · GitHub
[go: up one dir, main page]

Skip to content

Commit 1fe5cc8

Browse files
committed
Fix test regex
1 parent 156e844 commit 1fe5cc8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/test/API/lang/swift/objc_implementation/TestSwiftObjCImplementation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def test(self):
2222
],
2323
# On x86_64, BOOL types have an objc encoding of 'c', which is a
2424
# signed char. The result is in an output of '\x01'.
25-
patterns=[r"boolean = (true|'\x01')"],
25+
patterns=[r"boolean = (true|'\\x01')"],
2626
)
2727
# Swift types that are not representable in ObjC (bridged types such as
2828
# String) are not currently listed in the children. rdar://154046212

0 commit comments

Comments
 (0)
0