diff options
author | Frederic Riss <friss@apple.com> | 2019-10-09 20:39:04 +0000 |
---|---|---|
committer | Frederic Riss <friss@apple.com> | 2019-10-09 20:39:04 +0000 |
commit | 868b47fcbef1a116adf6668f24c2c3fcbfd57701 (patch) | |
tree | 46761428193b65b538e020b1d0a51c33ee73b34a /lldb/packages/Python/lldbsuite/test/tools | |
parent | d61ef7c46d11d31f5983ce87997244168d3b64e1 (diff) | |
download | bcm5719-llvm-868b47fcbef1a116adf6668f24c2c3fcbfd57701.tar.gz bcm5719-llvm-868b47fcbef1a116adf6668f24c2c3fcbfd57701.zip |
Skip Apple simulator test for all remote testing scenarios.
The test makes no sense to run remotely, period. The architecture of
the target is not the discriminant here.
llvm-svn: 374217
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/tools')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestAppleSimulatorOSType.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestAppleSimulatorOSType.py b/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestAppleSimulatorOSType.py index ac90f9499aa..70a07ae183d 100644 --- a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestAppleSimulatorOSType.py +++ b/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestAppleSimulatorOSType.py @@ -103,21 +103,21 @@ class TestAppleSimulatorOSType(gdbremote_testcase.GdbRemoteTestCaseBase): @apple_simulator_test('iphone') @debugserver_test - @skipIfDarwinEmbedded + @skipIfRemote def test_simulator_ostype_ios(self): self.check_simulator_ostype(sdk='iphonesimulator', platform='ios') @apple_simulator_test('appletv') @debugserver_test - @skipIfDarwinEmbedded + @skipIfRemote def test_simulator_ostype_tvos(self): self.check_simulator_ostype(sdk='appletvsimulator', platform='tvos') @apple_simulator_test('watch') @debugserver_test - @skipIfDarwinEmbedded + @skipIfRemote def test_simulator_ostype_watchos(self): self.check_simulator_ostype(sdk='watchsimulator', platform='watchos', arch='i386') |