From 9bace26a690a778ec0f09a9aae9537dfbdb6f42f Mon Sep 17 00:00:00 2001 From: Raphael Isemann Date: Fri, 13 Dec 2019 12:24:23 +0100 Subject: [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 --- .../lldbsuite/test/functionalities/stats_api/TestStatisticsAPI.py | 3 --- 1 file changed, 3 deletions(-) (limited to 'lldb/packages/Python/lldbsuite/test/functionalities/stats_api/TestStatisticsAPI.py') diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/stats_api/TestStatisticsAPI.py b/lldb/packages/Python/lldbsuite/test/functionalities/stats_api/TestStatisticsAPI.py index f2027eb131c..d4903b5269a 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/stats_api/TestStatisticsAPI.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/stats_api/TestStatisticsAPI.py @@ -10,9 +10,6 @@ from lldbsuite.test import lldbutil class TestStatsAPI(TestBase): mydir = TestBase.compute_mydir(__file__) - def setUp(self): - TestBase.setUp(self) - def test_stats_api(self): self.build() exe = self.getBuildArtifact("a.out") -- cgit v1.2.3