diff options
author | Enrico Granata <egranata@apple.com> | 2015-11-14 18:44:37 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2015-11-14 18:44:37 +0000 |
commit | 4fc8416181dc4943c65995f54f3c4d113b56a8f2 (patch) | |
tree | 89dccc83445deca4e052b796cb1acc8c6699edf4 /lldb/packages/Python/lldbsuite/test | |
parent | 7bfbb5912e9b180b4dbbd4622eec2a85be27e667 (diff) | |
download | bcm5719-llvm-4fc8416181dc4943c65995f54f3c4d113b56a8f2.tar.gz bcm5719-llvm-4fc8416181dc4943c65995f54f3c4d113b56a8f2.zip |
Uniquify all the type X delete commands via one common base class
This removes a lot of code, which is A Good Thing(TM)
llvm-svn: 253140
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-cpp/TestDataFormatterCpp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-cpp/TestDataFormatterCpp.py b/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-cpp/TestDataFormatterCpp.py index 3ca98af4db2..2ca737156a1 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-cpp/TestDataFormatterCpp.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-cpp/TestDataFormatterCpp.py @@ -84,7 +84,7 @@ class CppDataFormatterTestCase(TestBase): # Delete type format for 'Speed', we should expect an error message. self.expect("type format delete Speed", error=True, - substrs = ['no custom format for Speed']) + substrs = ['no custom formatter for Speed']) self.runCmd("type summary add --summary-string \"arr = ${var%s}\" -x \"char \\[[0-9]+\\]\" -v") |