aboutsummaryrefslogtreecommitdiffstats
path: root/test/Bindings/Ocaml/lit.local.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'test/Bindings/Ocaml/lit.local.cfg')
-rw-r--r--test/Bindings/Ocaml/lit.local.cfg13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/Bindings/Ocaml/lit.local.cfg b/test/Bindings/Ocaml/lit.local.cfg
new file mode 100644
index 0000000..127c3d5
--- /dev/null
+++ b/test/Bindings/Ocaml/lit.local.cfg
@@ -0,0 +1,13 @@
+config.suffixes = ['.ll', '.c', '.cpp', '.ml']
+
+def getRoot(config):
+ if not config.parent:
+ return config
+ return getRoot(config.parent)
+
+root = getRoot(config)
+
+bindings = set([s.strip() for s in root.llvm_bindings.split(',')])
+if not 'ocaml' in bindings:
+ config.unsupported = True
+