aboutsummaryrefslogtreecommitdiff
path: root/lldb/packages/Python/lldbsuite/test/configuration.py
diff options
context:
space:
mode:
authorJonas Devlieghere <jonas@devlieghere.com>2022-07-11 14:03:53 -0700
committerJonas Devlieghere <jonas@devlieghere.com>2022-07-11 14:49:24 -0700
commitce233e714665a0499fbd0686226e43130d44ef87 (patch)
treeb8669aa61dd47ee2f389a68f5b13c9b99f4dc8aa /lldb/packages/Python/lldbsuite/test/configuration.py
parentfaa00c131351725d8db74bac6a06459430344455 (diff)
downloadllvm-ce233e714665a0499fbd0686226e43130d44ef87.zip
llvm-ce233e714665a0499fbd0686226e43130d44ef87.tar.gz
llvm-ce233e714665a0499fbd0686226e43130d44ef87.tar.bz2
[lldb] Use the just-built libc++ for testing the LLDB data formatters
Make sure we use the libc++ from the build dir. Currently, by passing -stdlib=libc++, we might pick up the system libc++. This change ensures that if LLVM_LIBS_DIR is set, we try to use the libc++ from there. Differential revision: https://reviews.llvm.org/D129166
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/configuration.py')
-rw-r--r--lldb/packages/Python/lldbsuite/test/configuration.py3
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 6b3da8f..c29a44e 100644
--- a/lldb/packages/Python/lldbsuite/test/configuration.py
+++ b/lldb/packages/Python/lldbsuite/test/configuration.py
@@ -124,6 +124,9 @@ all_tests = set()
# LLDB library directory.
lldb_libs_dir = None
+# Force us to use the just-built libcxx
+hermetic_libcxx = False
+
# A plugin whose tests will be enabled, like intel-pt.
enabled_plugins = []