Replace all instances of dg.exp file with lit.local.cfg, since all tests are run...
[oota-llvm.git] / test / Bindings / Ocaml / lit.local.cfg
1 config.suffixes = ['.ll', '.c', '.cpp', '.ml']
2
3 def getRoot(config):
4     if not config.parent:
5         return config
6     return getRoot(config.parent)
7
8 root = getRoot(config)
9
10 bindings = set([s.strip() for s in root.llvm_bindings.split(',')])
11 if not 'ocaml' in bindings:
12     config.unsupported = True
13