diff options
author | James Y Knight <jyknight@google.com> | 2015-08-07 23:01:16 +0000 |
---|---|---|
committer | James Y Knight <jyknight@google.com> | 2015-08-07 23:01:16 +0000 |
commit | 0cab80c9b323ff53f4c775ca7e76b68bf7f0f2c2 (patch) | |
tree | 57bed2cc48931232eebfb3db4de5ed2930362df2 /llvm/test/ExecutionEngine | |
parent | 57fc89f0290d2c47d31abc88d5e021032adf8bc7 (diff) | |
download | bcm5719-llvm-0cab80c9b323ff53f4c775ca7e76b68bf7f0f2c2.tar.gz bcm5719-llvm-0cab80c9b323ff53f4c775ca7e76b68bf7f0f2c2.zip |
[SPARC] Disable unsupported ExecutionEngine tests, and XFAIL a couple
of DebugInfo tests.
llvm-svn: 244371
Diffstat (limited to 'llvm/test/ExecutionEngine')
-rw-r--r-- | llvm/test/ExecutionEngine/lit.local.cfg | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/llvm/test/ExecutionEngine/lit.local.cfg b/llvm/test/ExecutionEngine/lit.local.cfg index f6673df3c35..88e3e9b2388 100644 --- a/llvm/test/ExecutionEngine/lit.local.cfg +++ b/llvm/test/ExecutionEngine/lit.local.cfg @@ -1,4 +1,4 @@ -if config.root.host_arch in ['PowerPC', 'AArch64', 'SystemZ']: +if config.root.host_arch in ['Sparc', 'PowerPC', 'AArch64', 'SystemZ']: config.unsupported = True # CMake and autoconf diverge in naming or host_arch @@ -12,6 +12,9 @@ if 'aarch64' in config.root.target_triple \ if 'hexagon' in config.root.target_triple: config.unsupported = True +if 'sparc' in config.root.target_triple: + config.unsupported = True + # ExecutionEngine tests are not expected to pass in a cross-compilation setup. if 'native' not in config.available_features: config.unsupported = True |