xref: /llvm-project/lldb/packages/Python/lldbsuite/test/lldbtest_config.py (revision c8232e4310751ffa9fe506c1f6c11cbaa02b4621)
1c432c8f8SZachary Turner"""
22946cd70SChandler Carruth  Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
32946cd70SChandler Carruth  See https://llvm.org/LICENSE.txt for license information.
42946cd70SChandler Carruth  SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
5c432c8f8SZachary Turner
6c432c8f8SZachary TurnerConfiguration options for lldbtest.py set by dotest.py during initialization
7c432c8f8SZachary Turner"""
8c432c8f8SZachary Turner
9c432c8f8SZachary Turner# array of strings
10c432c8f8SZachary Turner# each string has the name of an lldb channel followed by
11c432c8f8SZachary Turner# zero or more categories in that channel
12c432c8f8SZachary Turner# ex. "gdb-remote packets"
13c432c8f8SZachary Turnerchannels = []
14c432c8f8SZachary Turner
15c432c8f8SZachary Turner# leave logs/traces even for successful test runs
16c432c8f8SZachary Turnerlog_success = False
17c432c8f8SZachary Turner
1845ae11cdSVedant Kumar# Indicate whether we're testing with an out-of-tree debugserver
1945ae11cdSVedant Kumarout_of_tree_debugserver = False
2045ae11cdSVedant Kumar
21c432c8f8SZachary Turner# path to the lldb command line executable tool
22c432c8f8SZachary TurnerlldbExec = None
23*c8232e43SJonas Devlieghere
24*c8232e43SJonas Devlieghere# Environment variables for the inferior
25*c8232e43SJonas Devlieghereinferior_env = None
26