[Lldb-commits] [lldb] 5e9aed1 - [lldb] [test] Mark TestNonStop as LLGS-specific

Michał Górny via lldb-commits lldb-commits at lists.llvm.org
Tue Jun 21 20:37:03 PDT 2022


Author: Michał Górny
Date: 2022-06-22T05:36:30+02:00
New Revision: 5e9aed1be5a5608d97c2ec3ac87698a8257b0ea7

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

LOG: [lldb] [test] Mark TestNonStop as LLGS-specific

Thanks for Med Ismail Bennani for reporting the debugserver failures.

Added: 
    

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

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/tools/lldb-server/TestNonStop.py b/lldb/test/API/tools/lldb-server/TestNonStop.py
index 2317d7061112..ebe66366b173 100644
--- a/lldb/test/API/tools/lldb-server/TestNonStop.py
+++ b/lldb/test/API/tools/lldb-server/TestNonStop.py
@@ -9,6 +9,7 @@ class LldbGdbServerTestCase(gdbremote_testcase.GdbRemoteTestCaseBase):
     mydir = TestBase.compute_mydir(__file__)
 
     @skipIfWindows  # no SIGSEGV support
+    @add_test_categories(["llgs"])
     def test_run(self):
         self.build()
         self.set_inferior_startup_launch()
@@ -116,6 +117,7 @@ def test_run(self):
         # finally, verify that all threads have started
         self.assertEqual(len(all_threads), thread_num + 1)
 
+    @add_test_categories(["llgs"])
     def test_vCtrlC(self):
         self.build()
         self.set_inferior_startup_launch()
@@ -134,6 +136,7 @@ def test_vCtrlC(self):
              ], True)
         self.expect_gdbremote_sequence()
 
+    @add_test_categories(["llgs"])
     def test_exit(self):
         self.build()
         self.set_inferior_startup_launch()
@@ -150,6 +153,7 @@ def test_exit(self):
         self.expect_gdbremote_sequence()
 
     @skipIfWindows  # no clue, the result makes zero sense
+    @add_test_categories(["llgs"])
     def test_exit_query(self):
         self.build()
         self.set_inferior_startup_launch()


        


More information about the lldb-commits mailing list