blob: c2d4549437b9a28e51e2de503c0643f80cfea3c3 [file] [log] [blame]
Vince Harron9753dd92015-05-10 15:22:09 +00001"""
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
Vince Harron790d95c2015-05-18 19:39:03 +000018
19# path to the lldb command line executable tool
20lldbExec = None
21