This test has been automatized
[oota-llvm.git] / test / Makefile
index de6ac40c5e0b95bc01117d401811f2ae99de2214..415a05a8179c7ef896c3dd44a544538beec77401 100644 (file)
@@ -1,20 +1,5 @@
-TESTS := $(wildcard *.ll)
+LEVEL  = ..
+DIRS   = Feature Regression Programs
+include ../Makefile.common
+include Makefile.tests
 
-test all : testasmdis testopt
-       @echo "All tests successfully completed!"
-
-testasmdis : $(TESTS:%.ll=%.ll.asmdis)
-       @echo "All assembler/disassembler test succeeded!"
-
-testopt : $(TESTS:%.ll=%.ll.opt)
-
-clean :
-       rm -f *.[123] *.bc core
-
-%.asmdis: %
-       @echo "Running assembler/disassembler test on $<"
-       @./TestAsmDisasm.sh $<
-
-%.opt: %
-       @echo "Running optimizier test on $<"
-       @./TestOptimizer.sh $<