2019-10-09 19:22:02 +00:00
|
|
|
# -*- Python -*-
|
|
|
|
|
|
|
|
import os
|
|
|
|
|
|
|
|
import lit.formats
|
|
|
|
from lit.llvm import llvm_config
|
|
|
|
|
|
|
|
# This is the top level configuration. Most of these configuration options will
|
|
|
|
# be overriden by individual lit configuration files in the test
|
2019-10-10 19:51:47 +00:00
|
|
|
# subdirectories. Anything configured here will *not* be loaded when pointing
|
|
|
|
# lit at on of the subdirectories.
|
2019-10-09 19:22:02 +00:00
|
|
|
|
2023-05-25 15:48:57 +00:00
|
|
|
config.name = "lldb"
|
2019-10-09 19:22:02 +00:00
|
|
|
config.test_source_root = os.path.dirname(__file__)
|
2023-05-25 15:48:57 +00:00
|
|
|
config.test_exec_root = os.path.join(config.lldb_obj_root, "test")
|