[Lldb-commits] [lldb] r369595 - [test] Update test so it matches the Windows output

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Wed Aug 21 15:32:22 PDT 2019


Author: jdevlieghere
Date: Wed Aug 21 15:32:21 2019
New Revision: 369595

URL: http://llvm.org/viewvc/llvm-project?rev=369595&view=rev
Log:
[test] Update test so it matches the Windows output

Modified:
    lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/char8_t/TestCxxChar8_t.py

Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/char8_t/TestCxxChar8_t.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/char8_t/TestCxxChar8_t.py?rev=369595&r1=369594&r2=369595&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/char8_t/TestCxxChar8_t.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/char8_t/TestCxxChar8_t.py Wed Aug 21 15:32:21 2019
@@ -31,10 +31,10 @@ class CxxChar8_tTestCase(TestBase):
         self.runCmd("run", RUN_SUCCEEDED)
 
         self.expect(
-            "frame variable a", substrs=["(char8_t) ::a = 0x61 u8'a'"])
+            "frame variable a", substrs=["(char8_t)", "0x61 u8'a'"])
 
         self.expect(
-            "frame variable ab", substrs=['(const char8_t *) ::ab', 'u8"你好"'])
+            "frame variable ab", substrs=['(const char8_t *)' , 'u8"你好"'])
 
         self.expect(
-            "frame variable abc", substrs=['(char8_t [9]) ::abc = u8"你好"'])
+            "frame variable abc", substrs=['(char8_t [9])', 'u8"你好"'])




More information about the lldb-commits mailing list