blob: 1cc2a0e431ade972092e2c9a6fab6deaa613d647 [file] [log] [blame]
"""
Test lldb data formatter subsystem.
"""
from __future__ import print_function
import os
import time
import lldb
from lldbsuite.test.decorators import *
from lldbsuite.test.lldbtest import *
from lldbsuite.test import lldbutil
class TypeSummaryListArgumentTestCase(TestBase):
mydir = TestBase.compute_mydir(__file__)
def setUp(self):
# Call super's setUp().
TestBase.setUp(self)
@no_debug_info_test
def test_type_summary_list_with_arg(self):
"""Test that the 'type summary list' command handles command line arguments properly"""
self.expect(
'type summary list Foo',
substrs=[
'Category: default',
'Category: system'])
self.expect(
'type summary list char',
substrs=[
'char *',
'unsigned char'])
self.expect(
'type summary list -w default',
substrs=['system'],
matching=False)
self.expect(
'type summary list -w system unsigned',
substrs=[
'default',
'0-9'],
matching=False)
self.expect(
'type summary list -w system char',
substrs=['unsigned char *'],
matching=True)