brintos

brintos / llvm-project-archived public Read only

0
0
Text · 741 B · d31588a Raw
26 lines · python
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-exception5 6Configuration options for lldbtest.py set by dotest.py during initialization7"""8 9# array of strings10# each string has the name of an lldb channel followed by11# zero or more categories in that channel12# ex. "gdb-remote packets"13channels = []14 15# leave logs/traces even for successful test runs16log_success = False17 18# Indicate whether we're testing with an out-of-tree debugserver19out_of_tree_debugserver = False20 21# path to the lldb command line executable tool22lldbExec = None23 24# Environment variables for the inferior25inferior_env = None26