Split two sub-tests into separate top-level methods.
authorAdrian Prantl <aprantl@apple.com>
Mon, 7 Jan 2019 19:24:04 +0000 (19:24 +0000)
committerAdrian Prantl <aprantl@apple.com>
Mon, 7 Jan 2019 19:24:04 +0000 (19:24 +0000)
llvm-svn: 350559

lldb/packages/Python/lldbsuite/test/macosx/queues/TestQueues.py

index c0becc5..cdc9606 100644 (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):