diff options
Diffstat (limited to 'test/ExecutionEngine/lit.local.cfg')
-rw-r--r-- | test/ExecutionEngine/lit.local.cfg | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/ExecutionEngine/lit.local.cfg b/test/ExecutionEngine/lit.local.cfg index f6673df3c358..88e3e9b23883 100644 --- a/test/ExecutionEngine/lit.local.cfg +++ b/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 |