diff options
author | Enrico Granata <egranata@apple.com> | 2016-10-26 19:17:49 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2016-10-26 19:17:49 +0000 |
commit | 73418dfe61df18bf724139fe0dd92036c8a5e2fa (patch) | |
tree | df955e175dd6fca7df64ec987f21023121532ad7 /lldb/packages/Python/lldbsuite/test/lang/cpp | |
parent | 0f45998bc60563e51580f9339e93da816341bebd (diff) | |
download | bcm5719-llvm-73418dfe61df18bf724139fe0dd92036c8a5e2fa.tar.gz bcm5719-llvm-73418dfe61df18bf724139fe0dd92036c8a5e2fa.zip |
Fix an issue where frame variable -s <varname> would not show the scope even though the user asked for it
Part of rdar://28434047
llvm-svn: 285226
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lang/cpp')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/cpp/unsigned_types/TestUnsignedTypes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/unsigned_types/TestUnsignedTypes.py b/lldb/packages/Python/lldbsuite/test/lang/cpp/unsigned_types/TestUnsignedTypes.py index cbb53d8b0f5..0189a65bec3 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/cpp/unsigned_types/TestUnsignedTypes.py +++ b/lldb/packages/Python/lldbsuite/test/lang/cpp/unsigned_types/TestUnsignedTypes.py @@ -55,9 +55,9 @@ class UnsignedTypesTestCase(TestBase): self.expect( "frame variable --show-types --no-args", VARIABLES_DISPLAYED_CORRECTLY, - startstr="(unsigned char) the_unsigned_char = 'c'", patterns=["\((short unsigned int|unsigned short)\) the_unsigned_short = 99"], substrs=[ + "(unsigned char) the_unsigned_char = 'c'", "(unsigned int) the_unsigned_int = 99", "(unsigned long) the_unsigned_long = 99", "(unsigned long long) the_unsigned_long_long = 99", |