]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/ExecutionEngine/lit.local.cfg
Vendor import of llvm RELEASE_350/final tag r216957 (effectively, 3.5.0 release):
[FreeBSD/FreeBSD.git] / test / ExecutionEngine / lit.local.cfg
1 if config.root.host_arch in ['PowerPC', 'AArch64', 'SystemZ']:
2     config.unsupported = True
3
4 # CMake and autoconf diverge in naming or host_arch
5 if 'powerpc64' in config.root.target_triple:
6     config.unsupported = True
7
8 if 'aarch64' in config.root.target_triple \
9     or 'arm64' in config.root.target_triple:
10         config.unsupported = True
11
12 if 'hexagon' in config.root.target_triple:
13     config.unsupported = True
14
15 # ExecutionEngine tests are not expected to pass in a cross-compilation setup.
16 if 'native' not in config.available_features:
17     config.unsupported = True