aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/python_api
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/test/API/python_api')
-rw-r--r--lldb/test/API/python_api/objc_type/TestObjCType.py3
-rw-r--r--lldb/test/API/python_api/sbtype_typeclass/TestSBTypeTypeClass.py2
2 files changed, 2 insertions, 3 deletions
diff --git a/lldb/test/API/python_api/objc_type/TestObjCType.py b/lldb/test/API/python_api/objc_type/TestObjCType.py
index 03b4150..8599b8a 100644
--- a/lldb/test/API/python_api/objc_type/TestObjCType.py
+++ b/lldb/test/API/python_api/objc_type/TestObjCType.py
@@ -19,8 +19,7 @@ class ObjCSBTypeTestCase(TestBase):
TestBase.setUp(self)
self.line = line_number("main.m", '// Break at this line')
- @skipUnlessDarwin
- @add_test_categories(['pyapi'])
+ @add_test_categories(['objc', 'pyapi'])
def test(self):
"""Test SBType for ObjC classes."""
self.build()
diff --git a/lldb/test/API/python_api/sbtype_typeclass/TestSBTypeTypeClass.py b/lldb/test/API/python_api/sbtype_typeclass/TestSBTypeTypeClass.py
index 59154e4..809ae52 100644
--- a/lldb/test/API/python_api/sbtype_typeclass/TestSBTypeTypeClass.py
+++ b/lldb/test/API/python_api/sbtype_typeclass/TestSBTypeTypeClass.py
@@ -3,7 +3,7 @@ from lldbsuite.test import lldbinline
lldbinline.MakeInlineTest(
__file__, globals(), [
- decorators.skipUnlessDarwin,
+ decorators.add_test_categories(["objc"]),
decorators.expectedFailureAll(
oslist=['macosx'], archs=['i386'],
bugnumber='rdar://28656677')])