I just tried cmake for the first time and it mostly worked. I had been using autotools to configure. With cmake configure environment when I try to do: make TESTSUITE=CodeGen/mblaze check it runs the whole test suite. Under autotools it would just run the mblaze tests. Is there an equivalent command in a camke configured environment or is this broken? I know nothing about cmake so I'm hoping there is a trivial answer. JP
llvmjp <jpbonn-keyword-llvm.7c175e at corniceresearch.com> writes:> I just tried cmake for the first time and it mostly worked. I had been > using autotools to configure. > > With cmake configure environment when I try to do: > > make TESTSUITE=CodeGen/mblaze check > > it runs the whole test suite. Under autotools it would just run the > mblaze tests. Is there an equivalent command in a camke configured > environment or is this broken? I know nothing about cmake so I'm hoping > there is a trivial answer.AFAIK that is not supported. It is not hard to add, but recently something similar was removed because it was not useful enough.
2011/6/9 llvmjp <jpbonn-keyword-llvm.7c175e at corniceresearch.com>:> make TESTSUITE=CodeGen/mblaze checkAre they useful to you? $ bin/llvm-lit -sv -jN test/CodeGen/MBlaze $ bin/llvm-lit -sv -jN /path/to/source/llvm/test/CodeGen/MBlaze/hogehoge.ll ...Takumi
Reasonably Related Threads
- [LLVMdev] cmake and testsuite
- [LLVMdev] how to change a compiler from a host to a target in Clang's assembler and linker
- [LLVMdev] How to make a cross compiler for xilinx microblaze
- [LLVMdev] [patch] MicroBlaze Backend
- [LLVMdev] MC ELFObjectWriter backend refactoring