Added support for testing instruction selection on all but 2 tests.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@333 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Vikram S. Adve 2001-07-31 21:45:56 +00:00
parent f6445837e9
commit 35fc0b172e

View File

@ -1,5 +1,7 @@
TESTS := $(wildcard *.ll)
SELECTTESTS := $(shell /bin/ls *.ll | grep -v testmemory | grep -v testswitch")
test all : testasmdis testopt
@echo "All tests successfully completed!"
@ -8,8 +10,10 @@ testasmdis : $(TESTS:%.ll=%.ll.asmdis)
testopt : $(TESTS:%.ll=%.ll.opt)
testselect : $(SELECTTESTS:%.ll=%.mc)
clean :
rm -f *.[123] *.bc core
rm -f *.[123] *.bc *.mc core
%.asmdis: %
@echo "Running assembler/disassembler test on $<"
@ -18,3 +22,11 @@ clean :
%.opt: %
@echo "Running optimizier test on $<"
@./TestOptimizer.sh $<
%.bc: %.ll
rm -f $@
as $<
%.mc: %.bc
@echo "Generating machine instructions for $<"
@llc -dselect i $< > $@