aboutsummaryrefslogtreecommitdiff
path: root/lit/Unit/lit.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'lit/Unit/lit.cfg')
-rw-r--r--lit/Unit/lit.cfg23
1 files changed, 23 insertions, 0 deletions
diff --git a/lit/Unit/lit.cfg b/lit/Unit/lit.cfg
new file mode 100644
index 000000000000..3d295475d564
--- /dev/null
+++ b/lit/Unit/lit.cfg
@@ -0,0 +1,23 @@
+# -*- Python -*-
+
+# Configuration file for the 'lit' test runner.
+
+import os
+
+import lit.formats
+
+# name: The name of this test suite.
+config.name = 'lldb-Unit'
+
+# suffixes: A list of file extensions to treat as test files.
+config.suffixes = []
+
+# test_source_root: The root path where unit test binaries are located.
+# test_exec_root: The root path where tests should be run.
+config.test_source_root = os.path.join(config.lldb_obj_root, 'unittests')
+config.test_exec_root = config.test_source_root
+
+# testFormat: The test format to use to interpret tests.
+if not hasattr(config, 'llvm_build_mode'):
+ lit_config.fatal("unable to find llvm_build_mode value on config")
+config.test_format = lit.formats.GoogleTest(config.llvm_build_mode, 'Tests')