diff options
Diffstat (limited to 'test/lit.cfg')
-rw-r--r-- | test/lit.cfg | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/lit.cfg b/test/lit.cfg index 7f26cdf03d..76b182747e 100644 --- a/test/lit.cfg +++ b/test/lit.cfg @@ -149,7 +149,8 @@ config.substitutions.append( ('%mcjit_triple', mcjit_triple) ) # Provide a substition for those tests that need to run the jit to obtain data # but simply want use the currently considered most reliable jit for platform -if 'arm' in config.target_triple: +if 'arm' in config.target_triple \ + or 'powerpc' in config.target_triple: defaultIsMCJIT = 'true' else: defaultIsMCJIT = 'false' |