[Lldb-commits] [lldb] r374217 - Skip Apple simulator test for all remote testing scenarios.
Frederic Riss via lldb-commits
lldb-commits at lists.llvm.org
Wed Oct 9 13:39:05 PDT 2019
Author: friss
Date: Wed Oct 9 13:39:04 2019
New Revision: 374217
URL: http://llvm.org/viewvc/llvm-project?rev=374217&view=rev
Log:
Skip Apple simulator test for all remote testing scenarios.
The test makes no sense to run remotely, period. The architecture of
the target is not the discriminant here.
Modified:
lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/TestAppleSimulatorOSType.py
Modified: lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/TestAppleSimulatorOSType.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/TestAppleSimulatorOSType.py?rev=374217&r1=374216&r2=374217&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/TestAppleSimulatorOSType.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/TestAppleSimulatorOSType.py Wed Oct 9 13:39:04 2019
@@ -103,21 +103,21 @@ class TestAppleSimulatorOSType(gdbremote
@apple_simulator_test('iphone')
@debugserver_test
- @skipIfDarwinEmbedded
+ @skipIfRemote
def test_simulator_ostype_ios(self):
self.check_simulator_ostype(sdk='iphonesimulator',
platform='ios')
@apple_simulator_test('appletv')
@debugserver_test
- @skipIfDarwinEmbedded
+ @skipIfRemote
def test_simulator_ostype_tvos(self):
self.check_simulator_ostype(sdk='appletvsimulator',
platform='tvos')
@apple_simulator_test('watch')
@debugserver_test
- @skipIfDarwinEmbedded
+ @skipIfRemote
def test_simulator_ostype_watchos(self):
self.check_simulator_ostype(sdk='watchsimulator',
platform='watchos', arch='i386')
More information about the lldb-commits
mailing list