[Lldb-commits] [lldb] r113751 - /lldb/trunk/test/unsigned_types/TestUnsignedTypes.py

Johnny Chen johnny.chen at apple.com
Mon Sep 13 09:19:09 PDT 2010


Author: johnny
Date: Mon Sep 13 11:19:09 2010
New Revision: 113751

URL: http://llvm.org/viewvc/llvm-project?rev=113751&view=rev
Log:
Updated the expected matching strings.

Modified:
    lldb/trunk/test/unsigned_types/TestUnsignedTypes.py

Modified: lldb/trunk/test/unsigned_types/TestUnsignedTypes.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/unsigned_types/TestUnsignedTypes.py?rev=113751&r1=113750&r2=113751&view=diff
==============================================================================
--- lldb/trunk/test/unsigned_types/TestUnsignedTypes.py (original)
+++ lldb/trunk/test/unsigned_types/TestUnsignedTypes.py Mon Sep 13 11:19:09 2010
@@ -44,12 +44,12 @@
 
         # Test that unsigned types display correctly.
         self.expect("frame variable -a", VARIABLES_DISPLAYED_CORRECTLY,
-            startstr = "the_unsigned_char = (unsigned char) 'c'",
-            substrs = ["the_unsigned_short = (short unsigned int) 0x0063",
-                       "the_unsigned_int = (unsigned int) 0x00000063",
-                       "the_unsigned_long = (long unsigned int) 0x0000000000000063",
-                       "the_unsigned_long_long = (long long unsigned int) 0x0000000000000063",
-                       "the_uint32 = (uint32_t) 0x00000063"])
+            startstr = "(unsigned char) the_unsigned_char = 'c'",
+            substrs = ["(short unsigned int) the_unsigned_short = 0x0063",
+                       "(unsigned int) the_unsigned_int = 0x00000063",
+                       "(long unsigned int) the_unsigned_long = 0x0000000000000063",
+                       "(long long unsigned int) the_unsigned_long_long = 0x0000000000000063",
+                       "(uint32_t) the_uint32 = 0x00000063"])
 
 
 if __name__ == '__main__':





More information about the lldb-commits mailing list