diff options
Diffstat (limited to 'test/Bindings/llvm-c/lit.local.cfg')
-rw-r--r-- | test/Bindings/llvm-c/lit.local.cfg | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/test/Bindings/llvm-c/lit.local.cfg b/test/Bindings/llvm-c/lit.local.cfg index d83ebee..75b22c0 100644 --- a/test/Bindings/llvm-c/lit.local.cfg +++ b/test/Bindings/llvm-c/lit.local.cfg @@ -1,5 +1,4 @@ -targets = set(config.root.targets_to_build.split()) -if not "X86" in targets: +if not "X86" in config.root.targets: config.unsupported = True -if not "ARM" in targets: +if not "ARM" in config.root.targets: config.unsupported = True |