diff options
author | Johnny Chen <johnny.chen@apple.com> | 2010-09-13 16:19:09 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2010-09-13 16:19:09 +0000 |
commit | e00234e0c77b333799f016cd1b4ffdf85d57d7e1 (patch) | |
tree | 5628fdb363d28c6d345ab525a3c2652ac2c38bf3 | |
parent | eb1b8dabc0408088f3a3b5cf59691bbd83bb5b7c (diff) | |
download | bcm5719-llvm-e00234e0c77b333799f016cd1b4ffdf85d57d7e1.tar.gz bcm5719-llvm-e00234e0c77b333799f016cd1b4ffdf85d57d7e1.zip |
Updated the expected matching strings.
llvm-svn: 113751
-rw-r--r-- | lldb/test/unsigned_types/TestUnsignedTypes.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lldb/test/unsigned_types/TestUnsignedTypes.py b/lldb/test/unsigned_types/TestUnsignedTypes.py index c60a525b000..c8c6ec890b2 100644 --- a/lldb/test/unsigned_types/TestUnsignedTypes.py +++ b/lldb/test/unsigned_types/TestUnsignedTypes.py @@ -44,12 +44,12 @@ class UnsignedTypesTestCase(TestBase): # 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__': |