[llvm] b8feeba - [RISCV] Make old JIT ExecutionEngine tests unsupported

via llvm-commits llvm-commits at lists.llvm.org
Mon May 23 18:01:25 PDT 2022


Author: Xeonacid
Date: 2022-05-24T03:01:00+02:00
New Revision: b8feeba0b407e703385738af7e415d0c8972a420

URL: https://github.com/llvm/llvm-project/commit/b8feeba0b407e703385738af7e415d0c8972a420
DIFF: https://github.com/llvm/llvm-project/commit/b8feeba0b407e703385738af7e415d0c8972a420.diff

LOG: [RISCV] Make old JIT ExecutionEngine tests unsupported

Make old JIT ExecutionEngine tests unsupported for RISCV, like many other architectures included.

Reviewed By: reames

Differential Revision: https://reviews.llvm.org/D126188

Added: 
    

Modified: 
    llvm/test/ExecutionEngine/lit.local.cfg

Removed: 
    


################################################################################
diff  --git a/llvm/test/ExecutionEngine/lit.local.cfg b/llvm/test/ExecutionEngine/lit.local.cfg
index d5c6decc7ef5b..3338d19e967f1 100644
--- a/llvm/test/ExecutionEngine/lit.local.cfg
+++ b/llvm/test/ExecutionEngine/lit.local.cfg
@@ -1,4 +1,4 @@
-if config.root.native_target in ['Sparc', 'PowerPC', 'AArch64', 'ARM64', 'SystemZ', 'Hexagon']:
+if config.root.native_target in ['Sparc', 'PowerPC', 'AArch64', 'ARM64', 'SystemZ', 'Hexagon', 'RISCV']:
     config.unsupported = True
 
 # ExecutionEngine tests are not expected to pass in a cross-compilation setup.


        


More information about the llvm-commits mailing list