diff options
Diffstat (limited to 'lldb/test/python_api/function_symbol')
-rw-r--r-- | lldb/test/python_api/function_symbol/TestDisasmAPI.py | 2 | ||||
-rw-r--r-- | lldb/test/python_api/function_symbol/TestSymbolAPI.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lldb/test/python_api/function_symbol/TestDisasmAPI.py b/lldb/test/python_api/function_symbol/TestDisasmAPI.py index 6ec69ab6e70..d7270ba72d5 100644 --- a/lldb/test/python_api/function_symbol/TestDisasmAPI.py +++ b/lldb/test/python_api/function_symbol/TestDisasmAPI.py @@ -12,7 +12,7 @@ class DisasmAPITestCase(TestBase): mydir = TestBase.compute_mydir(__file__) - @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin") + @skipUnlessDarwin @python_api_test @dsym_test def test_with_dsym(self): diff --git a/lldb/test/python_api/function_symbol/TestSymbolAPI.py b/lldb/test/python_api/function_symbol/TestSymbolAPI.py index dfb8fad23cb..6a315f288a6 100644 --- a/lldb/test/python_api/function_symbol/TestSymbolAPI.py +++ b/lldb/test/python_api/function_symbol/TestSymbolAPI.py @@ -12,7 +12,7 @@ class SymbolAPITestCase(TestBase): mydir = TestBase.compute_mydir(__file__) - @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin") + @skipUnlessDarwin @python_api_test @dsym_test def test_with_dsym(self): |