Split two sub-tests into separate top-level methods.

llvm-svn: 350559
This commit is contained in:
Adrian Prantl 2019-01-07 19:24:04 +00:00
parent bc8aa24c2f
commit 91cb4cccae
1 changed files with 7 additions and 1 deletions

View File

@ -18,10 +18,16 @@ class TestQueues(TestBase):
@skipUnlessDarwin
@add_test_categories(['pyapi'])
def test_with_python_api(self):
def test_with_python_api_queues(self):
"""Test queues inspection SB APIs."""
self.build()
self.queues()
@skipUnlessDarwin
@add_test_categories(['pyapi'])
def test_with_python_api_queues_with_backtrace(self):
"""Test queues inspection SB APIs."""
self.build()
self.queues_with_libBacktraceRecording()
def setUp(self):