summaryrefslogtreecommitdiff
path: root/lldb/test/API/functionalities/plugins/python_os_plugin
diff options
context:
space:
mode:
authorMichał Górny <mgorny@moritz.systems>2020-11-27 14:10:10 +0100
committerMichał Górny <mgorny@moritz.systems>2020-12-07 09:56:50 +0100
commit266c90fec899356aa2c88f1e614d40d554db6fb3 (patch)
tree6b13239789d39df4d85de07ea8e236b8f16dd28e /lldb/test/API/functionalities/plugins/python_os_plugin
parent53401e8e88641941fee0876d234f9a9fc70ef6ce (diff)
[lldb] [test] Link FreeBSD test failures to bugs
Differential Revision: https://reviews.llvm.org/D92740
Diffstat (limited to 'lldb/test/API/functionalities/plugins/python_os_plugin')
-rw-r--r--lldb/test/API/functionalities/plugins/python_os_plugin/stepping_plugin_threads/TestOSPluginStepping.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/test/API/functionalities/plugins/python_os_plugin/stepping_plugin_threads/TestOSPluginStepping.py b/lldb/test/API/functionalities/plugins/python_os_plugin/stepping_plugin_threads/TestOSPluginStepping.py
index 364fe58ec720..dca713b1f796 100644
--- a/lldb/test/API/functionalities/plugins/python_os_plugin/stepping_plugin_threads/TestOSPluginStepping.py
+++ b/lldb/test/API/functionalities/plugins/python_os_plugin/stepping_plugin_threads/TestOSPluginStepping.py
@@ -19,7 +19,7 @@ class TestOSPluginStepping(TestBase):
NO_DEBUG_INFO_TESTCASE = True
@skipIfWindows
- @skipIfFreeBSD # hangs
+ @skipIf(oslist=["freebsd"], bugnumber="llvm.org/pr48352")
def test_python_os_plugin(self):
"""Test that stepping works when the OS Plugin doesn't report all
threads at every stop"""
@@ -28,7 +28,7 @@ class TestOSPluginStepping(TestBase):
self.run_python_os_step_missing_thread(False)
@skipIfWindows
- @skipIfFreeBSD # hangs
+ @skipIf(oslist=["freebsd"], bugnumber="llvm.org/pr48352")
def test_python_os_plugin_prune(self):
"""Test that pruning the unreported PlanStacks works"""
self.build()