1if config.root.host_arch in ['PowerPC', 'AArch64', 'SystemZ']:
2    config.unsupported = True
3
4if 'hexagon' in config.root.target_triple:
5    config.unsupported = True
6
7# ExecutionEngine tests are not expected to pass in a cross-compilation setup.
8if 'native' not in config.available_features:
9    config.unsupported = True
10