Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / packages / Python / lldbsuite / test / lldbtest_config.py
blobd31588ab15c9493162de1769fe9a65a1ac8fa298
1 """
2 Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
3 See https://llvm.org/LICENSE.txt for license information.
4 SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 Configuration options for lldbtest.py set by dotest.py during initialization
7 """
9 # array of strings
10 # each string has the name of an lldb channel followed by
11 # zero or more categories in that channel
12 # ex. "gdb-remote packets"
13 channels = []
15 # leave logs/traces even for successful test runs
16 log_success = False
18 # Indicate whether we're testing with an out-of-tree debugserver
19 out_of_tree_debugserver = False
21 # path to the lldb command line executable tool
22 lldbExec = None
24 # Environment variables for the inferior
25 inferior_env = None