[lldb][NFC] Remove all setUp overrides that only call the parent implementation

Summary:
A lot of our tests copied the setUp code from our TestSampleTest.py:

```
    def setUp(self):
        # Call super's setUp().
        TestBase.setUp(self)
```

This code does nothing unless we actually do any setUp work in there, so let's remove all these method definitions.

Reviewers: labath, JDevlieghere

Reviewed By: labath

Subscribers: lldb-commits

Tags: #lldb

Differential Revision: https://reviews.llvm.org/D71454
This commit is contained in:
Raphael Isemann
2019-12-13 12:24:23 +01:00
parent 3ca771ba59
commit 9bace26a69
55 changed files with 0 additions and 202 deletions

View File

@@ -18,9 +18,6 @@ class TestStructuredDataAPI(TestBase):
def test(self):
self.structured_data_api_test()
def setUp(self):
TestBase.setUp(self)
@add_test_categories(['pyapi'])
def structured_data_api_test(self):
error = lldb.SBError()