diff options
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lang/c')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/c/find_struct_type/TestFindStructTypes.py | 4 | ||||
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/c/local_types/TestUseClosestType.py | 4 |
2 files changed, 0 insertions, 8 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/c/find_struct_type/TestFindStructTypes.py b/lldb/packages/Python/lldbsuite/test/lang/c/find_struct_type/TestFindStructTypes.py index 6e69c3e1d25..90d8530ff71 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/c/find_struct_type/TestFindStructTypes.py +++ b/lldb/packages/Python/lldbsuite/test/lang/c/find_struct_type/TestFindStructTypes.py @@ -23,10 +23,6 @@ class TestFindTypesOnStructType(TestBase): self.build() self.do_test() - def setUp(self): - # Call super's setUp(). - TestBase.setUp(self) - def do_test(self): """Make sure FindTypes actually finds 'struct typename' not just 'typename'.""" exe = self.getBuildArtifact("a.out") diff --git a/lldb/packages/Python/lldbsuite/test/lang/c/local_types/TestUseClosestType.py b/lldb/packages/Python/lldbsuite/test/lang/c/local_types/TestUseClosestType.py index e40c3163c05..2b8307ace0f 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/c/local_types/TestUseClosestType.py +++ b/lldb/packages/Python/lldbsuite/test/lang/c/local_types/TestUseClosestType.py @@ -26,10 +26,6 @@ class TestUseClosestType(TestBase): self.main_source_file = lldb.SBFileSpec("main.c") self.expr_test() - def setUp(self): - # Call super's setUp(). - TestBase.setUp(self) - def run_and_check_expr(self, num_children, child_type): frame = self.thread.GetFrameAtIndex(0) result = frame.EvaluateExpression("struct Foo *$mine = (struct Foo *) malloc(sizeof(struct Foo)); $mine") |