diff options
author | Aaron Smith <aaron.smith@microsoft.com> | 2019-08-14 00:14:15 +0000 |
---|---|---|
committer | Aaron Smith <aaron.smith@microsoft.com> | 2019-08-14 00:14:15 +0000 |
commit | 2a39024ac822fb8e5fb4c1ad3b61697bced919e8 (patch) | |
tree | 21fb62494f0a25b6dfa6bd3b3893d51a3e010d1c /lldb/packages/Python/lldbsuite/test/tools/lldb-server/commandline/TestStubSetSID.py | |
parent | 2a312fc9899ba66c519401b9c98b0880e405c855 (diff) | |
download | bcm5719-llvm-2a39024ac822fb8e5fb4c1ad3b61697bced919e8.tar.gz bcm5719-llvm-2a39024ac822fb8e5fb4c1ad3b61697bced919e8.zip |
Update Python tests for lldb-server on Windows
Summary: Thanks to Hui Huang and reviewers for all the help with this patch!
Reviewers: labath, jfb, clayborg
Reviewed By: labath
Subscribers: Hui, clayborg, dexonsmith, lldb-commits
Tags: #lldb
Differential Revision: https://reviews.llvm.org/D61687
llvm-svn: 368776
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/tools/lldb-server/commandline/TestStubSetSID.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/tools/lldb-server/commandline/TestStubSetSID.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/commandline/TestStubSetSID.py b/lldb/packages/Python/lldbsuite/test/tools/lldb-server/commandline/TestStubSetSID.py index d6fb2b93f9e..fe89a6c6f76 100644 --- a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/commandline/TestStubSetSID.py +++ b/lldb/packages/Python/lldbsuite/test/tools/lldb-server/commandline/TestStubSetSID.py @@ -47,6 +47,7 @@ class TestStubSetSIDTestCase(gdbremote_testcase.GdbRemoteTestCaseBase): self.set_inferior_startup_launch() self.sid_is_same_without_setsid() + @skipIfWindows @llgs_test @skipIfRemote # --setsid not used on remote platform and currently it is also impossible to get the sid of lldb-platform running on a remote target @expectedFailureAll(oslist=['freebsd']) @@ -62,6 +63,7 @@ class TestStubSetSIDTestCase(gdbremote_testcase.GdbRemoteTestCaseBase): self.set_inferior_startup_launch() self.sid_is_different_with_setsid() + @skipIfWindows @llgs_test @skipIfRemote # --setsid not used on remote platform and currently it is also impossible to get the sid of lldb-platform running on a remote target def test_sid_is_different_with_setsid_llgs(self): @@ -76,6 +78,7 @@ class TestStubSetSIDTestCase(gdbremote_testcase.GdbRemoteTestCaseBase): self.set_inferior_startup_launch() self.sid_is_different_with_S() + @skipIfWindows @llgs_test @skipIfRemote # --setsid not used on remote platform and currently it is also impossible to get the sid of lldb-platform running on a remote target def test_sid_is_different_with_S_llgs(self): |