diff options
| author | Tatyana Krasnukha <tatyana@synopsys.com> | 2021-02-04 01:02:31 +0300 |
|---|---|---|
| committer | Tatyana Krasnukha <tatyana@synopsys.com> | 2021-02-08 15:10:48 +0300 |
| commit | 05d7d6949c7cd3f1566d4c8394fa59160a7ffd05 (patch) | |
| tree | 7bcea3bbf63b43121fd01844974bb10afc467cd8 /lldb/test/API/python_api/thread/TestThreadAPI.py | |
| parent | f9c5e1664e081031e7deec3df49953952771d21b (diff) | |
[lldb/tests] Removed add_test_categories decorator for python API tests, NFC
There is a .categories file in the python_api directory that makes all nested tests
belong to the category "pyapi". The decorator is unnecessary for these tests.
Diffstat (limited to 'lldb/test/API/python_api/thread/TestThreadAPI.py')
| -rw-r--r-- | lldb/test/API/python_api/thread/TestThreadAPI.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lldb/test/API/python_api/thread/TestThreadAPI.py b/lldb/test/API/python_api/thread/TestThreadAPI.py index a369c70a0fd4..b8416ebba9b8 100644 --- a/lldb/test/API/python_api/thread/TestThreadAPI.py +++ b/lldb/test/API/python_api/thread/TestThreadAPI.py @@ -16,19 +16,16 @@ class ThreadAPITestCase(TestBase): mydir = TestBase.compute_mydir(__file__) - @add_test_categories(['pyapi']) def test_get_process(self): """Test Python SBThread.GetProcess() API.""" self.build() self.get_process() - @add_test_categories(['pyapi']) def test_get_stop_description(self): """Test Python SBThread.GetStopDescription() API.""" self.build() self.get_stop_description() - @add_test_categories(['pyapi']) def test_run_to_address(self): """Test Python SBThread.RunToAddress() API.""" # We build a different executable than the default build() does. @@ -38,7 +35,6 @@ class ThreadAPITestCase(TestBase): self.run_to_address(self.exe_name) @skipIfAsan # The output looks different under ASAN. - @add_test_categories(['pyapi']) @expectedFailureAll(oslist=["linux"], archs=['arm'], bugnumber="llvm.org/pr45892") @expectedFailureAll(oslist=["windows"]) def test_step_out_of_malloc_into_function_b(self): @@ -49,7 +45,6 @@ class ThreadAPITestCase(TestBase): self.setTearDownCleanup(dictionary=d) self.step_out_of_malloc_into_function_b(self.exe_name) - @add_test_categories(['pyapi']) def test_step_over_3_times(self): """Test Python SBThread.StepOver() API.""" # We build a different executable than the default build() does. |
