https://github.com/kastiglione created https://github.com/llvm/llvm-project/pull/69793
The underlying timezone classes are being reimplemented in Swift, and these strings will be Swift strings, without the ObjC `@` prefix. Leaving off the `@` makes these tests usable both before and after the reimplmentation of Foundation in Swift. >From adc191f11ab07466f22bbb8a8d45abb9e417913b Mon Sep 17 00:00:00 2001 From: Dave Lee <davelee....@gmail.com> Date: Thu, 20 Jul 2023 19:29:29 -0700 Subject: [PATCH] [lldb][test] Turn ObjC string literals to C-style literals (NFC) The underlying timezone classes are being reimplemented in Swift, and these strings will be Swift strings, without the ObjC `@` prefix. Leaving off the `@` makes these tests usable both before and after the reimplmentation of Foundation in Swift. --- .../data-formatter-objc/TestDataFormatterObjCNSDate.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lldb/test/API/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCNSDate.py b/lldb/test/API/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCNSDate.py index c4aec10505910ae..a1ffe84ad556f0e 100644 --- a/lldb/test/API/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCNSDate.py +++ b/lldb/test/API/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCNSDate.py @@ -53,12 +53,12 @@ def nsdate_data_formatter_commands(self): self.expect( "frame variable cupertino home europe", - substrs=['@"America/Los_Angeles"', '@"Europe/Rome"', '@"Europe/Paris"'], + substrs=['"America/Los_Angeles"', '"Europe/Rome"', '"Europe/Paris"'], ) self.expect( "frame variable cupertino_ns home_ns europe_ns", - substrs=['@"America/Los_Angeles"', '@"Europe/Rome"', '@"Europe/Paris"'], + substrs=['"America/Los_Angeles"', '"Europe/Rome"', '"Europe/Paris"'], ) self.expect( _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits