1""" 2 The LLVM Compiler Infrastructure 3 4 This file is distributed under the University of Illinois Open Source 5 License. See LICENSE.TXT for details. 6 7Configuration options for lldbtest.py set by dotest.py during initialization 8""" 9 10# array of strings 11# each string has the name of an lldb channel followed by 12# zero or more categories in that channel 13# ex. "gdb-remote packets" 14channels = [] 15 16# leave logs/traces even for successful test runs 17log_success = False 18 19# path to the lldb command line executable tool 20lldbExec = None 21