Move to test/programs/LLvmsource
[oota-llvm.git] / test / Makefile
index 44ac0bef65ff3843917f3c0ca1fbfb6fc4fb7073..415a05a8179c7ef896c3dd44a544538beec77401 100644 (file)
@@ -1,63 +1,5 @@
-LLC  := ../tools/Debug/llc
-AS   := ../tools/Debug/as
-LLCOPTS := -dsched y
-ARCHFLAGS =
-
-CC = /opt/SUNWspro/bin/cc
-CCFLAGS = -g -xarch=v9
-## CC = gcc
-## CCFLAGS = -g -xarch=v9 ## -mcpu=v9
-
-TESTS := $(wildcard *.ll)
-
-LLCTESTS := $(shell /bin/ls *.ll | grep -v testswitch | grep -v opttest | grep -v xx | grep -v calltest )
-
-
-test all : testasmdis testopt testcodegen
-       @echo "All tests successfully completed!"
-
-testasmdis  : $(TESTS:%.ll=%.ll.asmdis)
-       @echo "All assembler/disassembler test succeeded!"
-
-testopt     : $(TESTS:%.ll=%.ll.opt)
-
-testselect  : $(LLCTESTS:%.ll=%.mc)
-
-testsched   : $(LLCTESTS:%.ll=%.mc)
-
-testcodegen : $(LLCTESTS:%.ll=%.mc)
-
-testsparc   : $(LLCTESTS:%.ll=%.s)
-
-clean :
-       rm -f *.[123] *.bc *.mc *.s core
-
-%.asmdis: %
-       @echo "Running assembler/disassembler test on $<"
-       @./TestAsmDisasm.sh $<
-
-%.opt: %
-       @echo "Running optimizier test on $<"
-       @./TestOptimizer.sh $<
-
-%.bc: %.ll
-       $(AS) $< -f
-
-%.mc: %.ll $(LLC) $(AS)
-       @echo "Generating machine instructions for $<"
-       $(AS) < $< | $(LLC) $(LLCOPTS) > $@
-
-%.s: %.ll $(LLC) $(AS)
-       $(AS) < $<  | $(LLC) > $@
-
-## %.o: %.s %.ll
-##     /usr/ccs/bin/as $(ARCHFLAGS) $<
-
-
-%.o: %.s
-       $(CC) -c $(CCFLAGS) $<
-
-%: %.o
-       $(CC) -o $@ $(CCFLAGS) $<
-
+LEVEL  = ..
+DIRS   = Feature Regression Programs
+include ../Makefile.common
+include Makefile.tests