Vince Harron | 9753dd9 | 2015-05-10 15:22:09 +0000 | [diff] [blame] | 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 | |
| 7 | Configuration 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" |
| 14 | channels = [] |
| 15 | |
| 16 | # leave logs/traces even for successful test runs |
| 17 | log_success = False |
Vince Harron | 790d95c | 2015-05-18 19:39:03 +0000 | [diff] [blame] | 18 | |
| 19 | # path to the lldb command line executable tool |
| 20 | lldbExec = None |
| 21 | |