[Lldb-commits] [lldb] 3162c6a - [lldb] Skip TestSimulatorPlatform with out-of-tree debugserver

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Mon Aug 10 10:00:52 PDT 2020


Author: Jonas Devlieghere
Date: 2020-08-10T10:00:45-07:00
New Revision: 3162c6aa4587d5161008d2b9729b5f2873b0fff9

URL: https://github.com/llvm/llvm-project/commit/3162c6aa4587d5161008d2b9729b5f2873b0fff9
DIFF: https://github.com/llvm/llvm-project/commit/3162c6aa4587d5161008d2b9729b5f2873b0fff9.diff

LOG: [lldb] Skip TestSimulatorPlatform with out-of-tree debugserver

Added: 
    

Modified: 
    lldb/test/API/macosx/simulator/TestSimulatorPlatform.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/macosx/simulator/TestSimulatorPlatform.py b/lldb/test/API/macosx/simulator/TestSimulatorPlatform.py
index 26264868d893..cd3c999b5356 100644
--- a/lldb/test/API/macosx/simulator/TestSimulatorPlatform.py
+++ b/lldb/test/API/macosx/simulator/TestSimulatorPlatform.py
@@ -55,6 +55,7 @@ def run_with(self, arch, os, vers, env, expected_load_command):
     @skipUnlessDarwin
     @skipIfDarwinEmbedded
     @apple_simulator_test('iphone')
+    @skipIfOutOfTreeDebugserver
     def test_ios(self):
         """Test running an iOS simulator binary"""
         self.run_with(arch=self.getArchitecture(),
@@ -64,6 +65,7 @@ def test_ios(self):
     @skipUnlessDarwin
     @skipIfDarwinEmbedded
     @apple_simulator_test('appletv')
+    @skipIfOutOfTreeDebugserver
     def test_tvos(self):
         """Test running an tvOS simulator binary"""
         self.run_with(arch=self.getArchitecture(),
@@ -75,6 +77,7 @@ def test_tvos(self):
     @apple_simulator_test('watch')
     @skipIfDarwin # rdar://problem/64552748
     @skipIf(archs=['arm64','arm64e'])
+    @skipIfOutOfTreeDebugserver
     def test_watchos_i386(self):
         """Test running a 32-bit watchOS simulator binary"""
         self.run_with(arch='i386',
@@ -86,6 +89,7 @@ def test_watchos_i386(self):
     @apple_simulator_test('watch')
     @skipIfDarwin # rdar://problem/64552748
     @skipIf(archs=['i386','x86_64'])
+    @skipIfOutOfTreeDebugserver
     def test_watchos_armv7k(self):
         """Test running a 32-bit watchOS simulator binary"""
         self.run_with(arch='armv7k',
@@ -101,9 +105,10 @@ def test_watchos_armv7k(self):
     # and ios-simulator.  When targeting a simulator on Apple Silicon
     # macOS, however, these legacy load commands are never generated.
     #
-        
+
     @skipUnlessDarwin
     @skipIfDarwinEmbedded
+    @skipIfOutOfTreeDebugserver
     def test_lc_version_min_macosx(self):
         """Test running a back-deploying non-simulator MacOS X binary"""
         self.run_with(arch=self.getArchitecture(),
@@ -113,6 +118,7 @@ def test_lc_version_min_macosx(self):
     @skipIfDarwinEmbedded
     @apple_simulator_test('iphone')
     @skipIf(archs=['arm64','arm64e'])
+    @skipIfOutOfTreeDebugserver
     def test_lc_version_min_iphoneos(self):
         """Test running a back-deploying iOS simulator binary
            with a legacy iOS load command"""
@@ -124,6 +130,7 @@ def test_lc_version_min_iphoneos(self):
     @skipIfDarwinEmbedded
     @apple_simulator_test('iphone')
     @skipIf(archs=['arm64','arm64e'])
+    @skipIfOutOfTreeDebugserver
     def test_ios_backdeploy_x86(self):
         """Test running a back-deploying iOS simulator binary
            with a legacy iOS load command"""
@@ -135,6 +142,7 @@ def test_ios_backdeploy_x86(self):
     @skipIfDarwinEmbedded
     @apple_simulator_test('iphone')
     @skipIf(archs=['i386','x86_64'])
+    @skipIfOutOfTreeDebugserver
     def test_ios_backdeploy_apple_silicon(self):
         """Test running a back-deploying iOS simulator binary"""
         self.run_with(arch=self.getArchitecture(),
@@ -145,6 +153,7 @@ def test_ios_backdeploy_apple_silicon(self):
     @skipIfDarwinEmbedded
     @apple_simulator_test('appletv')
     @skipIf(archs=['arm64','arm64e'])
+    @skipIfOutOfTreeDebugserver
     def test_lc_version_min_tvos(self):
         """Test running a back-deploying tvOS simulator binary
            with a legacy tvOS load command"""
@@ -156,6 +165,7 @@ def test_lc_version_min_tvos(self):
     @skipIfDarwinEmbedded
     @apple_simulator_test('appletv')
     @skipIf(archs=['i386','x86_64'])
+    @skipIfOutOfTreeDebugserver
     def test_tvos_backdeploy_apple_silicon(self):
         """Test running a back-deploying tvOS simulator binary"""
         self.run_with(arch=self.getArchitecture(),
@@ -167,6 +177,7 @@ def test_tvos_backdeploy_apple_silicon(self):
     @apple_simulator_test('watch')
     @skipIf(archs=['arm64','arm64e'])
     @skipIfDarwin # rdar://problem/64552748
+    @skipIfOutOfTreeDebugserver
     def test_lc_version_min_watchos(self):
         """Test running a back-deploying watchOS simulator binary
            with a legacy watchOS load command"""
@@ -179,6 +190,7 @@ def test_lc_version_min_watchos(self):
     @apple_simulator_test('watch')
     @skipIf(archs=['arm64','arm64e'])
     @skipIfDarwin # rdar://problem/64552748
+    @skipIfOutOfTreeDebugserver
     def test_watchos_backdeploy_apple_silicon(self):
         """Test running a back-deploying watchOS simulator binary"""
         self.run_with(arch='armv7k',


        


More information about the lldb-commits mailing list