diff options
author | Michał Górny <mgorny@moritz.systems> | 2021-04-09 17:00:12 +0200 |
---|---|---|
committer | Michał Górny <mgorny@moritz.systems> | 2021-04-24 11:08:34 +0200 |
commit | fd0af0cf08284de79fe1a5bcfdc2dad83794dcfe (patch) | |
tree | 6e56f2694995c8fd15c78d322330d24cb3252d1e /lldb/packages/Python/lldbsuite/test/dotest.py | |
parent | bbae0c1f7b4f60e9b8ac2be24e35bec79d9b7b01 (diff) | |
download | llvm-fd0af0cf08284de79fe1a5bcfdc2dad83794dcfe.zip llvm-fd0af0cf08284de79fe1a5bcfdc2dad83794dcfe.tar.gz llvm-fd0af0cf08284de79fe1a5bcfdc2dad83794dcfe.tar.bz2 |
[lldb] [Process/Linux] Report fork/vfork stop reason
Enable reporting fork/vfork events to the server when supported.
At this moment, this is used only to test the server code, as real
client does not report fork-events and vfork-events as supported.
Differential Revision: https://reviews.llvm.org/D100208
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/dotest.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/dotest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/dotest.py b/lldb/packages/Python/lldbsuite/test/dotest.py index 79f839f..b3a6fb3 100644 --- a/lldb/packages/Python/lldbsuite/test/dotest.py +++ b/lldb/packages/Python/lldbsuite/test/dotest.py @@ -863,7 +863,7 @@ def checkForkVForkSupport(): from lldbsuite.test import lldbplatformutil platform = lldbplatformutil.getPlatform() - if platform not in []: + if platform not in ["linux"]: configuration.skip_categories.append("fork") |