1 config.suffixes = ['.ll', '.c', '.cpp'] 2 3 def getRoot(config): 4 if not config.parent: 5 return config 6 return getRoot(config.parent) 7 8 root = getRoot(config) 9 10 # Most profiling tests rely on a JIT being present to gather their data; AArch64 11 # doesn't have any JIT at present so they will fail when run there. 12 if root.host_arch in ['AArch64']: 13 config.unsupported = True 14