diff options
| author | Michał Górny <mgorny@moritz.systems> | 2020-11-07 17:12:57 +0100 |
|---|---|---|
| committer | Michał Górny <mgorny@moritz.systems> | 2020-11-07 19:26:42 +0100 |
| commit | 93c9110c980c9fc4bd72fb307c18f79afa0381e3 (patch) | |
| tree | 004448ccd305667567236d64f41f318b8ea39684 /lldb/test/API/python_api | |
| parent | 1ba9cedd0af241ed515ecd4eed3c1a241bd4813d (diff) | |
| download | llvm-93c9110c980c9fc4bd72fb307c18f79afa0381e3.zip llvm-93c9110c980c9fc4bd72fb307c18f79afa0381e3.tar.gz llvm-93c9110c980c9fc4bd72fb307c18f79afa0381e3.tar.bz2 | |
[lldb] [test] Use skipUnlessDarwin for tests specific to Darwin
Use skipUnlessDarwin decorator for tests that are specific to Darwin,
instead of skipIf... for all other platforms. This should make it clear
that these tests are not supposed to work elsewhere. It will also make
these tests stop repeatedly popping up while I look for tests that could
be fixed on the platform in question.
Differential Revision: https://reviews.llvm.org/D91003
Diffstat (limited to 'lldb/test/API/python_api')
| -rw-r--r-- | lldb/test/API/python_api/exprpath_synthetic/TestExprPathSynthetic.py | 4 | ||||
| -rw-r--r-- | lldb/test/API/python_api/sbtype_typeclass/TestSBTypeTypeClass.py | 3 |
2 files changed, 2 insertions, 5 deletions
diff --git a/lldb/test/API/python_api/exprpath_synthetic/TestExprPathSynthetic.py b/lldb/test/API/python_api/exprpath_synthetic/TestExprPathSynthetic.py index 19832ae..4ba088e 100644 --- a/lldb/test/API/python_api/exprpath_synthetic/TestExprPathSynthetic.py +++ b/lldb/test/API/python_api/exprpath_synthetic/TestExprPathSynthetic.py @@ -2,6 +2,4 @@ from lldbsuite.test import decorators from lldbsuite.test import lldbinline lldbinline.MakeInlineTest( - __file__, globals(), [ - decorators.skipIfFreeBSD, decorators.skipIfLinux, - decorators.skipIfWindows, decorators.skipIfNetBSD]) + __file__, globals(), [decorators.skipUnlessDarwin]) diff --git a/lldb/test/API/python_api/sbtype_typeclass/TestSBTypeTypeClass.py b/lldb/test/API/python_api/sbtype_typeclass/TestSBTypeTypeClass.py index a06dd7a..59154e4 100644 --- a/lldb/test/API/python_api/sbtype_typeclass/TestSBTypeTypeClass.py +++ b/lldb/test/API/python_api/sbtype_typeclass/TestSBTypeTypeClass.py @@ -3,8 +3,7 @@ from lldbsuite.test import lldbinline lldbinline.MakeInlineTest( __file__, globals(), [ - decorators.skipIfFreeBSD, decorators.skipIfLinux, - decorators.skipIfWindows, decorators.skipIfNetBSD, + decorators.skipUnlessDarwin, decorators.expectedFailureAll( oslist=['macosx'], archs=['i386'], bugnumber='rdar://28656677')]) |
