diff options
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/dotest.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/dotest.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/dotest.py b/lldb/packages/Python/lldbsuite/test/dotest.py index 39e130a..79f839f 100644 --- a/lldb/packages/Python/lldbsuite/test/dotest.py +++ b/lldb/packages/Python/lldbsuite/test/dotest.py @@ -858,6 +858,15 @@ def checkDebugServerSupport(): if configuration.verbose: print(skip_msg%"lldb-server"); + +def checkForkVForkSupport(): + from lldbsuite.test import lldbplatformutil + + platform = lldbplatformutil.getPlatform() + if platform not in []: + configuration.skip_categories.append("fork") + + def run_suite(): # On MacOS X, check to make sure that domain for com.apple.DebugSymbols defaults # does not exist before proceeding to running the test suite. @@ -954,6 +963,7 @@ def run_suite(): checkDebugInfoSupport() checkDebugServerSupport() checkObjcSupport() + checkForkVForkSupport() print("Skipping the following test categories: {}".format(configuration.skip_categories)) |