summaryrefslogtreecommitdiffstats
path: root/lldb/packages/Python/lldbsuite/test/dotest.py
diff options
context:
space:
mode:
authorAaron Smith <aaron.smith@microsoft.com>2019-08-14 00:14:15 +0000
committerAaron Smith <aaron.smith@microsoft.com>2019-08-14 00:14:15 +0000
commit2a39024ac822fb8e5fb4c1ad3b61697bced919e8 (patch)
tree21fb62494f0a25b6dfa6bd3b3893d51a3e010d1c /lldb/packages/Python/lldbsuite/test/dotest.py
parent2a312fc9899ba66c519401b9c98b0880e405c855 (diff)
downloadbcm5719-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/dotest.py')
-rw-r--r--lldb/packages/Python/lldbsuite/test/dotest.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/dotest.py b/lldb/packages/Python/lldbsuite/test/dotest.py
index 5b25157376f..ce585889f1e 100644
--- a/lldb/packages/Python/lldbsuite/test/dotest.py
+++ b/lldb/packages/Python/lldbsuite/test/dotest.py
@@ -1216,8 +1216,8 @@ def run_suite():
# Don't do debugserver tests on anything except OS X.
configuration.dont_do_debugserver_test = "linux" in target_platform or "freebsd" in target_platform or "windows" in target_platform
- # Don't do lldb-server (llgs) tests on anything except Linux.
- configuration.dont_do_llgs_test = not ("linux" in target_platform)
+ # Don't do lldb-server (llgs) tests on anything except Linux and Windows.
+ configuration.dont_do_llgs_test = not ("linux" in target_platform) and not ("windows" in target_platform)
# Collect tests from the specified testing directories. If a test
# subdirectory filter is explicitly specified, limit the search to that
OpenPOWER on IntegriCloud