1*061da546Spatrick""" 2*061da546Spatrick Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 3*061da546Spatrick See https://llvm.org/LICENSE.txt for license information. 4*061da546Spatrick SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 5*061da546Spatrick 6*061da546SpatrickConfiguration options for lldbtest.py set by dotest.py during initialization 7*061da546Spatrick""" 8*061da546Spatrick 9*061da546Spatrick# array of strings 10*061da546Spatrick# each string has the name of an lldb channel followed by 11*061da546Spatrick# zero or more categories in that channel 12*061da546Spatrick# ex. "gdb-remote packets" 13*061da546Spatrickchannels = [] 14*061da546Spatrick 15*061da546Spatrick# leave logs/traces even for successful test runs 16*061da546Spatricklog_success = False 17*061da546Spatrick 18*061da546Spatrick# Indicate whether we're testing with an out-of-tree debugserver 19*061da546Spatrickout_of_tree_debugserver = False 20*061da546Spatrick 21*061da546Spatrick# path to the lldb command line executable tool 22*061da546SpatricklldbExec = None 23*061da546Spatrick 24*061da546Spatrick# Environment variables for the inferior 25*061da546Spatrickinferior_env = None 26