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
|
||||
def test_simulator_ostype_ios(self):
|
||||
self.check_simulator_ostype(sdk='iphonesimulator',
|
||||
platform='ios')
|
||||
platform='iossimulator')
|
||||
|
||||
@apple_simulator_test('appletv')
|
||||
@debugserver_test
|
||||
@skipIfRemote
|
||||
def test_simulator_ostype_tvos(self):
|
||||
self.check_simulator_ostype(sdk='appletvsimulator',
|
||||
platform='tvos')
|
||||
platform='tvossimulator')
|
||||
|
||||
@apple_simulator_test('watch')
|
||||
@debugserver_test
|
||||
@skipIfRemote
|
||||
def test_simulator_ostype_watchos(self):
|
||||
self.check_simulator_ostype(sdk='watchsimulator',
|
||||
platform='watchos', arch='i386')
|
||||
platform='watchossimulator',
|
||||
arch='i386')
|
||||
|
|
Loading…
Reference in New Issue