forked from OSchip/llvm-project
Split two sub-tests into separate top-level methods.
llvm-svn: 350559
This commit is contained in:
parent
bc8aa24c2f
commit
91cb4cccae
|
@ -18,10 +18,16 @@ class TestQueues(TestBase):
|
||||||
|
|
||||||
@skipUnlessDarwin
|
@skipUnlessDarwin
|
||||||
@add_test_categories(['pyapi'])
|
@add_test_categories(['pyapi'])
|
||||||
def test_with_python_api(self):
|
def test_with_python_api_queues(self):
|
||||||
"""Test queues inspection SB APIs."""
|
"""Test queues inspection SB APIs."""
|
||||||
self.build()
|
self.build()
|
||||||
self.queues()
|
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()
|
self.queues_with_libBacktraceRecording()
|
||||||
|
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
|
|
Loading…
Reference in New Issue