- Added ExecutionEngine/MCJIT tests
authorDanil Malyshev <dmalyshev@accesssoftek.com>
Thu, 17 May 2012 21:07:47 +0000 (21:07 +0000)
committerDanil Malyshev <dmalyshev@accesssoftek.com>
Thu, 17 May 2012 21:07:47 +0000 (21:07 +0000)
commit7c5db453504e64998f1f32ca54aeb4e5b59005d2
tree48c717667ff9a2b975a745531bddd2818078fcb8
parentdfb1097504a735e82abd973f5ac3c5d52d1a8c67
- Added ExecutionEngine/MCJIT tests
- Added HOST_ARCH to Makefile.config.in
The HOST_ARCH will be used by MCJIT tests filter, because MCJIT supported only x86 and ARM architectures now.

llvm-svn: 157015
54 files changed:
llvm/Makefile.config.in
llvm/autoconf/configure.ac
llvm/configure
llvm/test/CMakeLists.txt
llvm/test/ExecutionEngine/MCJIT/2002-12-16-ArgTest.ll [new file with mode: 0644]
llvm/test/ExecutionEngine/MCJIT/2003-01-04-ArgumentBug.ll [new file with mode: 0644]
llvm/test/ExecutionEngine/MCJIT/2003-01-04-LoopTest.ll [new file with mode: 0644]
llvm/test/ExecutionEngine/MCJIT/2003-01-04-PhiTest.ll [new file with mode: 0644]
llvm/test/ExecutionEngine/MCJIT/2003-01-09-SARTest.ll [new file with mode: 0644]
llvm/test/ExecutionEngine/MCJIT/2003-01-10-FUCOM.ll [new file with mode: 0644]
llvm/test/ExecutionEngine/MCJIT/2003-01-15-AlignmentTest.ll [new file with mode: 0644]
llvm/test/ExecutionEngine/MCJIT/2003-05-06-LivenessClobber.ll [new file with mode: 0644]
llvm/test/ExecutionEngine/MCJIT/2003-05-07-ArgumentTest.ll [new file with mode: 0644]
llvm/test/ExecutionEngine/MCJIT/2003-05-11-PHIRegAllocBug.ll [new file with mode: 0644]
llvm/test/ExecutionEngine/MCJIT/2003-06-04-bzip2-bug.ll [new file with mode: 0644]
llvm/test/ExecutionEngine/MCJIT/2003-06-05-PHIBug.ll [new file with mode: 0644]
llvm/test/ExecutionEngine/MCJIT/2003-08-15-AllocaAssertion.ll [new file with mode: 0644]
llvm/test/ExecutionEngine/MCJIT/2003-08-21-EnvironmentTest.ll [new file with mode: 0644]
llvm/test/ExecutionEngine/MCJIT/2003-08-23-RegisterAllocatePhysReg.ll [new file with mode: 0644]
llvm/test/ExecutionEngine/MCJIT/2003-10-18-PHINode-ConstantExpr-CondCode-Failure.ll [new file with mode: 0644]
llvm/test/ExecutionEngine/MCJIT/2005-12-02-TailCallBug.ll [new file with mode: 0644]
llvm/test/ExecutionEngine/MCJIT/2007-12-10-APIntLoadStore.ll [new file with mode: 0644]
llvm/test/ExecutionEngine/MCJIT/2008-06-05-APInt-OverAShr.ll [new file with mode: 0644]
llvm/test/ExecutionEngine/MCJIT/2010-01-15-UndefValue.ll [new file with mode: 0644]
llvm/test/ExecutionEngine/MCJIT/fpbitcast.ll [new file with mode: 0644]
llvm/test/ExecutionEngine/MCJIT/hello.ll [new file with mode: 0644]
llvm/test/ExecutionEngine/MCJIT/hello2.ll [new file with mode: 0644]
llvm/test/ExecutionEngine/MCJIT/lit.local.cfg [new file with mode: 0644]
llvm/test/ExecutionEngine/MCJIT/simplesttest.ll [new file with mode: 0644]
llvm/test/ExecutionEngine/MCJIT/simpletest.ll [new file with mode: 0644]
llvm/test/ExecutionEngine/MCJIT/stubs.ll [new file with mode: 0644]
llvm/test/ExecutionEngine/MCJIT/test-arith.ll [new file with mode: 0644]
llvm/test/ExecutionEngine/MCJIT/test-branch.ll [new file with mode: 0644]
llvm/test/ExecutionEngine/MCJIT/test-call-no-external-funcs.ll [new file with mode: 0644]
llvm/test/ExecutionEngine/MCJIT/test-call.ll [new file with mode: 0644]
llvm/test/ExecutionEngine/MCJIT/test-cast.ll [new file with mode: 0644]
llvm/test/ExecutionEngine/MCJIT/test-common-symbols.ll [new file with mode: 0644]
llvm/test/ExecutionEngine/MCJIT/test-constantexpr.ll [new file with mode: 0644]
llvm/test/ExecutionEngine/MCJIT/test-fp-no-external-funcs.ll [new file with mode: 0644]
llvm/test/ExecutionEngine/MCJIT/test-fp.ll [new file with mode: 0644]
llvm/test/ExecutionEngine/MCJIT/test-global-init-nonzero.ll [new file with mode: 0644]
llvm/test/ExecutionEngine/MCJIT/test-global.ll [new file with mode: 0644]
llvm/test/ExecutionEngine/MCJIT/test-loadstore.ll [new file with mode: 0644]
llvm/test/ExecutionEngine/MCJIT/test-local.ll [new file with mode: 0644]
llvm/test/ExecutionEngine/MCJIT/test-logical.ll [new file with mode: 0644]
llvm/test/ExecutionEngine/MCJIT/test-loop.ll [new file with mode: 0644]
llvm/test/ExecutionEngine/MCJIT/test-phi.ll [new file with mode: 0644]
llvm/test/ExecutionEngine/MCJIT/test-ret.ll [new file with mode: 0644]
llvm/test/ExecutionEngine/MCJIT/test-return.ll [new file with mode: 0644]
llvm/test/ExecutionEngine/MCJIT/test-setcond-fp.ll [new file with mode: 0644]
llvm/test/ExecutionEngine/MCJIT/test-setcond-int.ll [new file with mode: 0644]
llvm/test/ExecutionEngine/MCJIT/test-shift.ll [new file with mode: 0644]
llvm/test/Makefile
llvm/test/lit.site.cfg.in