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.

llvm-svn: 374217
This commit is contained in:
Frederic Riss 2019-10-09 20:39:04 +00:00
parent d61ef7c46d
commit 868b47fcbe
1 changed files with 3 additions and 3 deletions

View File

@ -103,21 +103,21 @@ class TestAppleSimulatorOSType(gdbremote_testcase.GdbRemoteTestCaseBase):
@apple_simulator_test('iphone') @apple_simulator_test('iphone')
@debugserver_test @debugserver_test
@skipIfDarwinEmbedded @skipIfRemote
def test_simulator_ostype_ios(self): def test_simulator_ostype_ios(self):
self.check_simulator_ostype(sdk='iphonesimulator', self.check_simulator_ostype(sdk='iphonesimulator',
platform='ios') platform='ios')
@apple_simulator_test('appletv') @apple_simulator_test('appletv')
@debugserver_test @debugserver_test
@skipIfDarwinEmbedded @skipIfRemote
def test_simulator_ostype_tvos(self): def test_simulator_ostype_tvos(self):
self.check_simulator_ostype(sdk='appletvsimulator', self.check_simulator_ostype(sdk='appletvsimulator',
platform='tvos') platform='tvos')
@apple_simulator_test('watch') @apple_simulator_test('watch')
@debugserver_test @debugserver_test
@skipIfDarwinEmbedded @skipIfRemote
def test_simulator_ostype_watchos(self): def test_simulator_ostype_watchos(self):
self.check_simulator_ostype(sdk='watchsimulator', self.check_simulator_ostype(sdk='watchsimulator',
platform='watchos', arch='i386') platform='watchos', arch='i386')