diff options
Diffstat (limited to 'llvm/test/CodeGen/R600/lit.local.cfg')
| -rw-r--r-- | llvm/test/CodeGen/R600/lit.local.cfg | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/R600/lit.local.cfg b/llvm/test/CodeGen/R600/lit.local.cfg new file mode 100644 index 00000000000..36ee493e594 --- /dev/null +++ b/llvm/test/CodeGen/R600/lit.local.cfg @@ -0,0 +1,13 @@ +config.suffixes = ['.ll', '.c', '.cpp'] + +def getRoot(config): + if not config.parent: + return config + return getRoot(config.parent) + +root = getRoot(config) + +targets = set(root.targets_to_build.split()) +if not 'R600' in targets: + config.unsupported = True + |

