[Lldb-commits] [lldb] 14b9f32 - [lldb] Remote @debugserver_test from TestAppleSimulatorOSType
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Tue Apr 13 07:10:40 PDT 2021
Author: Pavel Labath
Date: 2021-04-13T16:09:50+02:00
New Revision: 14b9f320fef9888ab63ff0e791060437a0e1dcc8
URL: https://github.com/llvm/llvm-project/commit/14b9f320fef9888ab63ff0e791060437a0e1dcc8
DIFF: https://github.com/llvm/llvm-project/commit/14b9f320fef9888ab63ff0e791060437a0e1dcc8.diff
LOG: [lldb] Remote @debugserver_test from TestAppleSimulatorOSType
The annotation is now (since the introduction of @apple_simulator_test)
redundant, and the test could theoretically run on lldb-server too (if
it supported darwin hosts).
Added:
Modified:
lldb/test/API/tools/lldb-server/TestAppleSimulatorOSType.py
Removed:
################################################################################
diff --git a/lldb/test/API/tools/lldb-server/TestAppleSimulatorOSType.py b/lldb/test/API/tools/lldb-server/TestAppleSimulatorOSType.py
index f44955ac838a6..467e6cdc69766 100644
--- a/lldb/test/API/tools/lldb-server/TestAppleSimulatorOSType.py
+++ b/lldb/test/API/tools/lldb-server/TestAppleSimulatorOSType.py
@@ -131,21 +131,18 @@ def check_simulator_ostype(self, sdk, platform_name, arch=platform.machine()):
@apple_simulator_test('iphone')
- @debugserver_test
@skipIfRemote
def test_simulator_ostype_ios(self):
self.check_simulator_ostype(sdk='iphonesimulator',
platform_name='ios')
@apple_simulator_test('appletv')
- @debugserver_test
@skipIfRemote
def test_simulator_ostype_tvos(self):
self.check_simulator_ostype(sdk='appletvsimulator',
platform_name='tvos')
@apple_simulator_test('watch')
- @debugserver_test
@skipIfRemote
def test_simulator_ostype_watchos(self):
self.check_simulator_ostype(sdk='watchsimulator',
More information about the lldb-commits
mailing list