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
5
6Configuration options for lldbtest.py set by dotest.py during initialization
7"""
8
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"
13channels = []
14
15# leave logs/traces even for successful test runs
16log_success = False
17
18# Indicate whether we're testing with an out-of-tree debugserver
19out_of_tree_debugserver = False
20
21# path to the lldb command line executable tool
22lldbExec = None
23
24# Environment variables for the inferior
25inferior_env = None
26