[Lldb-commits] [lldb] 5161194 - Revert "Update debugserver test for new ostype names"
Adrian Prantl via lldb-commits
lldb-commits at lists.llvm.org
Wed Mar 11 21:33:02 PDT 2020
Author: Adrian Prantl
Date: 2020-03-11T21:32:12-07:00
New Revision: 5161194fad8cdd0b496c63c410855290c5e5190b
URL: https://github.com/llvm/llvm-project/commit/5161194fad8cdd0b496c63c410855290c5e5190b
DIFF: https://github.com/llvm/llvm-project/commit/5161194fad8cdd0b496c63c410855290c5e5190b.diff
LOG: Revert "Update debugserver test for new ostype names"
I accidentally commited this while cherry-picking commits out of my
reflog.
This reverts commit ae73ab64b66d1889b447303d432f4d217d222def.
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 2a2d174afeeb..86b54dd3e8e5 100644
--- a/lldb/test/API/tools/lldb-server/TestAppleSimulatorOSType.py
+++ b/lldb/test/API/tools/lldb-server/TestAppleSimulatorOSType.py
@@ -105,19 +105,18 @@ def check_simulator_ostype(self, sdk, platform, arch='x86_64'):
@skipIfRemote
def test_simulator_ostype_ios(self):
self.check_simulator_ostype(sdk='iphonesimulator',
- platform='iossimulator')
+ platform='ios')
@apple_simulator_test('appletv')
@debugserver_test
@skipIfRemote
def test_simulator_ostype_tvos(self):
self.check_simulator_ostype(sdk='appletvsimulator',
- platform='tvossimulator')
+ platform='tvos')
@apple_simulator_test('watch')
@debugserver_test
@skipIfRemote
def test_simulator_ostype_watchos(self):
self.check_simulator_ostype(sdk='watchsimulator',
- platform='watchossimulator',
- arch='i386')
+ platform='watchos', arch='i386')
More information about the lldb-commits
mailing list