From: Jonas Devlieghere Date: Sat, 27 Mar 2021 00:08:29 +0000 (-0700) Subject: [lldb] Stop using i386 for the watchOS simulator X-Git-Tag: llvmorg-14-init~11127 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=df0f9e044773480dbc01cf4e381af0517c930f13;p=platform%2Fupstream%2Fllvm.git [lldb] Stop using i386 for the watchOS simulator This keeps breaking on my machine. It's time to move on. --- diff --git a/lldb/test/API/tools/lldb-server/TestAppleSimulatorOSType.py b/lldb/test/API/tools/lldb-server/TestAppleSimulatorOSType.py index d25ac26..c0ec379 100644 --- a/lldb/test/API/tools/lldb-server/TestAppleSimulatorOSType.py +++ b/lldb/test/API/tools/lldb-server/TestAppleSimulatorOSType.py @@ -6,6 +6,7 @@ from lldbsuite.test import lldbutil import json import platform +import re @skipIfReproducer class TestAppleSimulatorOSType(gdbremote_testcase.GdbRemoteTestCaseBase): @@ -140,5 +141,4 @@ class TestAppleSimulatorOSType(gdbremote_testcase.GdbRemoteTestCaseBase): @skipIfRemote def test_simulator_ostype_watchos(self): self.check_simulator_ostype(sdk='watchsimulator', - platform_name='watchos', - arch='i386') + platform_name='watchos')