[Lldb-commits] [lldb] fcea418 - [lldb] [test] Mark lldb-server multiprocess tests as LLGS cat
Michał Górny via lldb-commits
lldb-commits at lists.llvm.org
Thu Apr 1 05:18:14 PDT 2021
Author: Michał Górny
Date: 2021-04-01T14:17:47+02:00
New Revision: fcea4181bbfbc15a27ad4d3c06a09b706b1d6c47
URL: https://github.com/llvm/llvm-project/commit/fcea4181bbfbc15a27ad4d3c06a09b706b1d6c47
DIFF: https://github.com/llvm/llvm-project/commit/fcea4181bbfbc15a27ad4d3c06a09b706b1d6c47.diff
LOG: [lldb] [test] Mark lldb-server multiprocess tests as LLGS cat
Added:
Modified:
lldb/test/API/tools/lldb-server/TestLldbGdbServer.py
lldb/test/API/tools/lldb-server/vCont-threads/TestGdbRemote_vContThreads.py
Removed:
################################################################################
diff --git a/lldb/test/API/tools/lldb-server/TestLldbGdbServer.py b/lldb/test/API/tools/lldb-server/TestLldbGdbServer.py
index 0764e3d6c75a6..7090abf00fc5a 100644
--- a/lldb/test/API/tools/lldb-server/TestLldbGdbServer.py
+++ b/lldb/test/API/tools/lldb-server/TestLldbGdbServer.py
@@ -398,6 +398,7 @@ def test_Hg_switches_to_3_threads_attach(self):
self.Hg_switches_to_3_threads()
@expectedFailureAll(oslist=["windows"]) # expect 4 threads
+ @add_test_categories(["llgs"])
def test_Hg_switches_to_3_threads_attach_pass_correct_pid(self):
self.build()
self.set_inferior_startup_attach()
@@ -427,18 +428,21 @@ def Hg_fails_on_pid(self, pass_pid):
self.expect_gdbremote_sequence()
@expectedFailureAll(oslist=["windows"])
+ @add_test_categories(["llgs"])
def test_Hg_fails_on_another_pid(self):
self.build()
self.set_inferior_startup_launch()
self.Hg_fails_on_pid(1)
@expectedFailureAll(oslist=["windows"])
+ @add_test_categories(["llgs"])
def test_Hg_fails_on_zero_pid(self):
self.build()
self.set_inferior_startup_launch()
self.Hg_fails_on_pid(0)
@expectedFailureAll(oslist=["windows"])
+ @add_test_categories(["llgs"])
def test_Hg_fails_on_minus_one_pid(self):
self.build()
self.set_inferior_startup_launch()
diff --git a/lldb/test/API/tools/lldb-server/vCont-threads/TestGdbRemote_vContThreads.py b/lldb/test/API/tools/lldb-server/vCont-threads/TestGdbRemote_vContThreads.py
index c7ced621c3f90..86a1693721774 100644
--- a/lldb/test/API/tools/lldb-server/vCont-threads/TestGdbRemote_vContThreads.py
+++ b/lldb/test/API/tools/lldb-server/vCont-threads/TestGdbRemote_vContThreads.py
@@ -96,6 +96,7 @@ def test_signal_all_threads(self):
@skipIfWindows
@expectedFailureNetBSD
+ @add_test_categories(["llgs"])
def test_signal_process_by_pid(self):
self.build()
self.set_inferior_startup_launch()
@@ -109,6 +110,7 @@ def test_signal_process_by_pid(self):
@skipIfWindows
@expectedFailureNetBSD
+ @add_test_categories(["llgs"])
def test_signal_process_minus_one(self):
self.build()
self.set_inferior_startup_launch()
@@ -121,6 +123,7 @@ def test_signal_process_minus_one(self):
@skipIfWindows
@expectedFailureNetBSD
+ @add_test_categories(["llgs"])
def test_signal_minus_one(self):
self.build()
self.set_inferior_startup_launch()
@@ -132,6 +135,7 @@ def test_signal_minus_one(self):
@skipIfWindows
@expectedFailureNetBSD
+ @add_test_categories(["llgs"])
def test_signal_all_threads_by_pid(self):
self.build()
self.set_inferior_startup_launch()
@@ -147,6 +151,7 @@ def test_signal_all_threads_by_pid(self):
@skipIfWindows
@expectedFailureNetBSD
+ @add_test_categories(["llgs"])
def test_signal_minus_one_by_pid(self):
self.build()
self.set_inferior_startup_launch()
@@ -160,6 +165,7 @@ def test_signal_minus_one_by_pid(self):
@skipIfWindows
@expectedFailureNetBSD
+ @add_test_categories(["llgs"])
def test_signal_minus_one_by_minus_one(self):
self.build()
self.set_inferior_startup_launch()
More information about the lldb-commits
mailing list