[Lldb-commits] [lldb] 24d3210 - [lldb] Skip the Apple Simulator tests with reproducers
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Mon Aug 17 11:29:44 PDT 2020
Author: Jonas Devlieghere
Date: 2020-08-17T11:29:37-07:00
New Revision: 24d3210e62bfbbc8a80ebdff939d41bae2d5292d
URL: https://github.com/llvm/llvm-project/commit/24d3210e62bfbbc8a80ebdff939d41bae2d5292d
DIFF: https://github.com/llvm/llvm-project/commit/24d3210e62bfbbc8a80ebdff939d41bae2d5292d.diff
LOG: [lldb] Skip the Apple Simulator tests with reproducers
Added:
Modified:
lldb/test/API/functionalities/gdb_remote_client/TestIOSSimulator.py
lldb/test/API/macosx/simulator/TestSimulatorPlatform.py
lldb/test/API/tools/lldb-server/TestAppleSimulatorOSType.py
Removed:
################################################################################
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.decorators import *
from gdbclientutils import *
+ at skipIfReproducer
class TestIOSSimulator(GDBRemoteTestBase):
"""
Test that an ios simulator process is recognized as such.
@@ -25,7 +26,7 @@ def qProcessInfo(self):
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 unittest2
+ at 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 @@
import json
+ at skipIfReproducer
class TestAppleSimulatorOSType(gdbremote_testcase.GdbRemoteTestCaseBase):
mydir = TestBase.compute_mydir(__file__)
More information about the lldb-commits
mailing list