diff --git a/lldb/test/API/functionalities/gdb_remote_client/TestIOSSimulator.py b/lldb/test/API/functionalities/gdb_remote_client/TestIOSSimulator.py index a096a1504fd6..a3eceaf95e07 100644 --- a/lldb/test/API/functionalities/gdb_remote_client/TestIOSSimulator.py +++ b/lldb/test/API/functionalities/gdb_remote_client/TestIOSSimulator.py @@ -3,6 +3,7 @@ from lldbsuite.test.lldbtest import * from lldbsuite.test.decorators import * from gdbclientutils import * +@skipIfReproducer class TestIOSSimulator(GDBRemoteTestBase): """ Test that an ios simulator process is recognized as such. @@ -25,7 +26,7 @@ class TestIOSSimulator(GDBRemoteTestBase): return "pid:a860;parent-pid:d2a0;real-uid:1f5;real-gid:14;effective-uid:1f5;effective-gid:14;cputype:1000007;cpusubtype:8;ptrsize:8;ostype:%s;vendor:apple;endian:little;"%self.process_ostype def vCont(self): return "vCont;" - + def platform_test(self, host, process, expected_triple): self.server.responder = self.MyResponder(host, process) if self.TraceOn(): diff --git a/lldb/test/API/macosx/simulator/TestSimulatorPlatform.py b/lldb/test/API/macosx/simulator/TestSimulatorPlatform.py index 41924fc62a10..9fd542d2f667 100644 --- a/lldb/test/API/macosx/simulator/TestSimulatorPlatform.py +++ b/lldb/test/API/macosx/simulator/TestSimulatorPlatform.py @@ -6,6 +6,7 @@ import json import unittest2 +@skipIfReproducer class TestSimulatorPlatformLaunching(TestBase): mydir = TestBase.compute_mydir(__file__) diff --git a/lldb/test/API/tools/lldb-server/TestAppleSimulatorOSType.py b/lldb/test/API/tools/lldb-server/TestAppleSimulatorOSType.py index 9bba50313c04..51aa004baea6 100644 --- a/lldb/test/API/tools/lldb-server/TestAppleSimulatorOSType.py +++ b/lldb/test/API/tools/lldb-server/TestAppleSimulatorOSType.py @@ -8,6 +8,7 @@ from lldbsuite.test import lldbutil import json +@skipIfReproducer class TestAppleSimulatorOSType(gdbremote_testcase.GdbRemoteTestCaseBase): mydir = TestBase.compute_mydir(__file__)