diff options
author | Enrico Granata <egranata@apple.com> | 2015-09-04 21:01:18 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2015-09-04 21:01:18 +0000 |
commit | 33e97e63a5928ee6884f41ef8d609653ac1b375f (patch) | |
tree | df5ad6e9f8495f779efadf1d4bd883a4c9620389 /lldb/test/functionalities/data-formatter/data-formatter-disabling | |
parent | 7a518c3dabe75faece2b9b38f466c936dd3decda (diff) | |
download | bcm5719-llvm-33e97e63a5928ee6884f41ef8d609653ac1b375f.tar.gz bcm5719-llvm-33e97e63a5928ee6884f41ef8d609653ac1b375f.zip |
Move the C++ data formatters to the C++ language plugin
llvm-svn: 246873
Diffstat (limited to 'lldb/test/functionalities/data-formatter/data-formatter-disabling')
-rw-r--r-- | lldb/test/functionalities/data-formatter/data-formatter-disabling/TestDataFormatterDisabling.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lldb/test/functionalities/data-formatter/data-formatter-disabling/TestDataFormatterDisabling.py b/lldb/test/functionalities/data-formatter/data-formatter-disabling/TestDataFormatterDisabling.py index 03f80d379e1..e12dfad32b5 100644 --- a/lldb/test/functionalities/data-formatter/data-formatter-disabling/TestDataFormatterDisabling.py +++ b/lldb/test/functionalities/data-formatter/data-formatter-disabling/TestDataFormatterDisabling.py @@ -55,7 +55,7 @@ class DataFormatterDisablingTestCase(TestBase): #self.runCmd('type category enable system VectorTypes libcxx gnu-libstdc++ CoreGraphics CoreServices AppKit CoreFoundation objc default', check=False) - self.expect('type category list', substrs = ['system is enabled', 'gnu-libstdc++ is enabled', 'AppKit is enabled']) + self.expect('type category list', substrs = ['system is enabled',]) self.expect("frame variable numbers", substrs = ['[0] = 1', '[3] = 1234']) @@ -70,23 +70,23 @@ class DataFormatterDisablingTestCase(TestBase): self.expect('frame variable string1', matching=False, substrs = ['hello world']) - self.expect('type category list', substrs = ['system is not enabled', 'gnu-libstdc++ is not enabled', 'AppKit is not enabled']) + self.expect('type category list', substrs = ['system is not enabled',]) # now enable and check that we are back to normal self.runCmd("type category enable *") - self.expect('type category list', substrs = ['system is enabled', 'gnu-libstdc++ is enabled', 'AppKit is enabled']) + self.expect('type category list', substrs = ['system is enabled']) self.expect("frame variable numbers", substrs = ['[0] = 1', '[3] = 1234']) self.expect('frame variable string1', substrs = ['hello world']) - self.expect('type category list', substrs = ['system is enabled', 'gnu-libstdc++ is enabled', 'AppKit is enabled']) + self.expect('type category list', substrs = ['system is enabled']) # last check - our cleanup will re-enable everything self.runCmd('type category disable *') - self.expect('type category list', substrs = ['system is not enabled', 'gnu-libstdc++ is not enabled', 'AppKit is not enabled']) + self.expect('type category list', substrs = ['system is not enabled']) if __name__ == '__main__': |