forked from OSchip/llvm-project
Update debugserver test for new ostype names
This commit is contained in:
parent
213aea4c58
commit
ae73ab64b6
|
@ -105,18 +105,19 @@ class TestAppleSimulatorOSType(gdbremote_testcase.GdbRemoteTestCaseBase):
|
||||||
@skipIfRemote
|
@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='iossimulator')
|
||||||
|
|
||||||
@apple_simulator_test('appletv')
|
@apple_simulator_test('appletv')
|
||||||
@debugserver_test
|
@debugserver_test
|
||||||
@skipIfRemote
|
@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='tvossimulator')
|
||||||
|
|
||||||
@apple_simulator_test('watch')
|
@apple_simulator_test('watch')
|
||||||
@debugserver_test
|
@debugserver_test
|
||||||
@skipIfRemote
|
@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='watchossimulator',
|
||||||
|
arch='i386')
|
||||||
|
|
Loading…
Reference in New Issue