2 Test lldb data formatter subsystem.
8 from lldbsuite.test.decorators import *
9 from lldbsuite.test.lldbtest import *
10 from lldbsuite.test import lldbutil
13 class TypeSummaryListArgumentTestCase(TestBase):
15 mydir = TestBase.compute_mydir(__file__)
18 def test_type_summary_list_with_arg(self):
19 """Test that the 'type summary list' command handles command line arguments properly"""
21 'type summary list Foo',
26 'type summary list char',
32 'type summary list -w default',
36 'type summary list -w system unsigned',
42 'type summary list -w system char',
43 substrs=['unsigned char *'],