diff options
| author | Greg Clayton <gclayton@apple.com> | 2011-06-30 02:28:26 +0000 |
|---|---|---|
| committer | Greg Clayton <gclayton@apple.com> | 2011-06-30 02:28:26 +0000 |
| commit | e305594277de342f49b92fb5e4849b3fc13a8de0 (patch) | |
| tree | 131c85af82155042afe56cf519221a39fe2314f3 /lldb/test/lang/cpp/dynamic-value/TestDynamicValue.py | |
| parent | cfe3b14d7787f5d563d28266a7f04c3d18311105 (diff) | |
| download | bcm5719-llvm-e305594277de342f49b92fb5e4849b3fc13a8de0.tar.gz bcm5719-llvm-e305594277de342f49b92fb5e4849b3fc13a8de0.zip | |
Centralize all of the type name code so that we always strip the leading
"struct ", "class ", and "union " from the start of any type names that are
extracted from clang QualType objects. I had to fix test suite cases that
were expecting the struct/union/class prefix to be there.
llvm-svn: 134132
Diffstat (limited to 'lldb/test/lang/cpp/dynamic-value/TestDynamicValue.py')
| -rw-r--r-- | lldb/test/lang/cpp/dynamic-value/TestDynamicValue.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/lang/cpp/dynamic-value/TestDynamicValue.py b/lldb/test/lang/cpp/dynamic-value/TestDynamicValue.py index d44f52dd8b0..dd6cf221303 100644 --- a/lldb/test/lang/cpp/dynamic-value/TestDynamicValue.py +++ b/lldb/test/lang/cpp/dynamic-value/TestDynamicValue.py @@ -168,7 +168,7 @@ class DynamicValueTestCase(TestBase): # make sure that works as well: self.expect('frame var -d run-target anotherA.m_client_A._M_ptr', 'frame var finds its way into a child member', - patterns = ['\(.* B \*\)']) + patterns = ['\(B \*\)']) # Now make sure we also get it right for a reference as well: |

