[Lldb-commits] [lldb] c362f61 - [lldb] [test] Mark new launch/QEnvironment tests as llgs category

Michał Górny via lldb-commits lldb-commits at lists.llvm.org
Fri Sep 10 07:23:57 PDT 2021


Author: Michał Górny
Date: 2021-09-10T16:23:43+02:00
New Revision: c362f610f8c08fc53bdf6aea6e990b26fe63b097

URL: https://github.com/llvm/llvm-project/commit/c362f610f8c08fc53bdf6aea6e990b26fe63b097
DIFF: https://github.com/llvm/llvm-project/commit/c362f610f8c08fc53bdf6aea6e990b26fe63b097.diff

LOG: [lldb] [test] Mark new launch/QEnvironment tests as llgs category

Added: 
    

Modified: 
    lldb/test/API/tools/lldb-server/TestLldbGdbServer.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/tools/lldb-server/TestLldbGdbServer.py b/lldb/test/API/tools/lldb-server/TestLldbGdbServer.py
index aac73dd53998..9b901756c093 100644
--- a/lldb/test/API/tools/lldb-server/TestLldbGdbServer.py
+++ b/lldb/test/API/tools/lldb-server/TestLldbGdbServer.py
@@ -1250,6 +1250,7 @@ def test_P_and_p_thread_suffix_work(self):
             self.assertEqual(read_value, expected_reg_values[thread_index])
             thread_index += 1
 
+    @add_test_categories(["llgs"])
     def test_launch_via_A(self):
         self.build()
         exe_path = self.getBuildArtifact("a.out")
@@ -1273,6 +1274,7 @@ def test_launch_via_A(self):
         self.assertEqual(context["O_content"],
                          b'arg1\r\narg2\r\narg3\r\n')
 
+    @add_test_categories(["llgs"])
     def test_launch_via_vRun(self):
         self.build()
         exe_path = self.getBuildArtifact("a.out")
@@ -1291,6 +1293,7 @@ def test_launch_via_vRun(self):
             True)
         context = self.expect_gdbremote_sequence()
 
+    @add_test_categories(["llgs"])
     def test_launch_via_vRun_no_args(self):
         self.build()
         exe_path = self.getBuildArtifact("a.out")
@@ -1308,6 +1311,7 @@ def test_launch_via_vRun_no_args(self):
             True)
         self.expect_gdbremote_sequence()
 
+    @add_test_categories(["llgs"])
     def test_QEnvironment(self):
         self.build()
         exe_path = self.getBuildArtifact("a.out")
@@ -1334,6 +1338,7 @@ def test_QEnvironment(self):
         context = self.expect_gdbremote_sequence()
         self.assertEqual(context["O_content"], b"test\r\na=z\r\n")
 
+    @add_test_categories(["llgs"])
     def test_QEnvironmentHexEncoded(self):
         self.build()
         exe_path = self.getBuildArtifact("a.out")


        


More information about the lldb-commits mailing list