- 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)
commitbb8cef51dfe7bb59109786a0ca46ad165c39aa38
tree47107748cff082496775ef833af69b4cc385cc19
parent9133783d5483e38b16af6c10df7a8bbe655d3446
- 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.

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