From cc0b5ebf7fc8beb8fa907730e2d8f52d4c31bdc7 Mon Sep 17 00:00:00 2001 From: Jonas Devlieghere Date: Fri, 19 Aug 2022 15:14:15 -0700 Subject: [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 --- lldb/packages/Python/lldbsuite/test/configuration.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lldb/packages/Python/lldbsuite/test/configuration.py') 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 = [] -- cgit v1.1