From b53d44b17a1685e405415cd32c4b6eb89cc4c3a1 Mon Sep 17 00:00:00 2001 From: Adrian Prantl Date: Tue, 14 Jan 2020 12:34:13 -0800 Subject: dotest.py: Add option to pass extra lldb settings to dotest The primary motivation for this is to add another dimension to the Swift LLDB test matrix, but this seems generally useful. Differential Revision: https://reviews.llvm.org/D72662 --- lldb/packages/Python/lldbsuite/test/configuration.py | 4 ++++ 1 file changed, 4 insertions(+) (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 0fc831d1173..09fc646f96e 100644 --- a/lldb/packages/Python/lldbsuite/test/configuration.py +++ b/lldb/packages/Python/lldbsuite/test/configuration.py @@ -48,6 +48,10 @@ compiler = None # Must be initialized after option parsing # The overriden dwarf verison. dwarf_version = 0 +# Any overridden settings. +# Always disable default dynamic types for testing purposes. +settings = [('target.prefer-dynamic-value', 'no-dynamic-values')] + # Path to the FileCheck testing tool. Not optional. filecheck = None -- cgit v1.2.3