diff options
author | John Harrison <harjohn@google.com> | 2025-05-23 08:46:23 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-23 08:46:23 -0700 |
commit | 7dc7c155251c0008d5d59b84f0c9056365740f11 (patch) | |
tree | f23ceb76c44424044dc4f0ff8effa06498877c4d /lldb/packages/Python/lldbsuite/test/configuration.py | |
parent | 3f15b66decce2580c4c0c28bc92c220e29567c2f (diff) | |
download | llvm-7dc7c155251c0008d5d59b84f0c9056365740f11.zip llvm-7dc7c155251c0008d5d59b84f0c9056365740f11.tar.gz llvm-7dc7c155251c0008d5d59b84f0c9056365740f11.tar.bz2 |
[lldb] Adding a new decorator for CMAKE_BUILD_TYPE. (#141159)
In lldb-dap, we have existing tests that are known to be unstable when
lldb and lldb-dap are built in the Debug configuration.
This decorator lets us skip those tests in CI jobs that are to slow with
those configurations.
This was split out from #140777 to make the patches smaller.
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/configuration.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/configuration.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/configuration.py b/lldb/packages/Python/lldbsuite/test/configuration.py index 18c1566..b2d91fd2 100644 --- a/lldb/packages/Python/lldbsuite/test/configuration.py +++ b/lldb/packages/Python/lldbsuite/test/configuration.py @@ -137,6 +137,9 @@ libcxx_library_dir = None # A plugin whose tests will be enabled, like intel-pt. enabled_plugins = [] +# the build type of lldb +# Typical values include Debug, Release, RelWithDebInfo and MinSizeRel +cmake_build_type = None def shouldSkipBecauseOfCategories(test_categories): if use_categories: |