diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2022-08-19 15:14:15 -0700 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2022-08-19 15:20:41 -0700 |
commit | cc0b5ebf7fc8beb8fa907730e2d8f52d4c31bdc7 (patch) | |
tree | 8ef47f63a7f178bf1c3b90e11b4bd45889049cbf /lldb/packages/Python/lldbsuite/test/configuration.py | |
parent | 9e51cbac9ef90bf6c239d1eab21f3f857f2343bb (diff) | |
download | llvm-cc0b5ebf7fc8beb8fa907730e2d8f52d4c31bdc7.zip llvm-cc0b5ebf7fc8beb8fa907730e2d8f52d4c31bdc7.tar.gz llvm-cc0b5ebf7fc8beb8fa907730e2d8f52d4c31bdc7.tar.bz2 |
[lldb] Support specifying a custom libcxx for the API tests
This patch combines D129166 (to always pick the just-built libc++) and
D132257 (to allow customizing the libc++ for testing). The common goal
is to avoid picking up an unexpected libc++ for testing.
Differential revision: https://reviews.llvm.org/D132263
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/configuration.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/configuration.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/configuration.py b/lldb/packages/Python/lldbsuite/test/configuration.py index c29a44e..5133ded 100644 --- a/lldb/packages/Python/lldbsuite/test/configuration.py +++ b/lldb/packages/Python/lldbsuite/test/configuration.py @@ -124,8 +124,8 @@ all_tests = set() # LLDB library directory. lldb_libs_dir = None -# Force us to use the just-built libcxx -hermetic_libcxx = False +libcxx_include_dir = None +libcxx_library_dir = None # A plugin whose tests will be enabled, like intel-pt. enabled_plugins = [] |