aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/Analysis/Profiling/lit.local.cfg5
-rw-r--r--test/lit.cfg1
2 files changed, 1 insertions, 5 deletions
diff --git a/test/Analysis/Profiling/lit.local.cfg b/test/Analysis/Profiling/lit.local.cfg
index 444b7dc..d40fa4f 100644
--- a/test/Analysis/Profiling/lit.local.cfg
+++ b/test/Analysis/Profiling/lit.local.cfg
@@ -7,10 +7,5 @@ def getRoot(config):
root = getRoot(config)
-# Most profiling tests rely on a JIT being present to gather their data; AArch64
-# doesn't have any JIT at present so they will fail when run there.
-if root.host_arch in ['AArch64']:
- config.unsupported = True
-
if 'hexagon' in root.target_triple:
config.unsupported = True
diff --git a/test/lit.cfg b/test/lit.cfg
index d38775d..8272e97 100644
--- a/test/lit.cfg
+++ b/test/lit.cfg
@@ -160,6 +160,7 @@ config.substitutions.append( ('%lli_mcjit', lli_mcjit) )
# but simply want use the currently considered most reliable jit for platform
# FIXME: ppc32 is not ready for mcjit.
if 'arm' in config.target_triple \
+ or 'aarch64' in config.target_triple \
or 'powerpc64' in config.target_triple \
or 's390x' in config.target_triple:
defaultIsMCJIT = 'true'