aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-01-23 17:22:17 +0000
committerChris Lattner <sabre@nondot.org>2002-01-23 17:22:17 +0000
commit3e811739027e1249f85e2483ef7304de1864fd69 (patch)
treefacd201a3f37db9a4f1f4febb9b7d323ad35040d
parent747604218fecb44cf3acf553984cfc57444bd7d4 (diff)
New minimal makefile
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1561 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/Makefile38
1 files changed, 2 insertions, 36 deletions
diff --git a/test/Makefile b/test/Makefile
index 67fdee0e13..2b7bf2c647 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -1,37 +1,3 @@
LEVEL = ..
-DIRS = Programs
-
-TESTS := $(wildcard *.ll)
-
-LLCTESTS := $(shell /bin/ls *.ll | grep -v testswitch | grep -v opttest | grep -v xx | grep -v calltest | grep -v alloca | grep -v memory )
-
-
-test all :: testasmdis testopt testsparc
- @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)
-
-%.asmdis: %
- @echo "Running assembler/disassembler test on $<"
- @./TestAsmDisasm.sh $<
-
-%.opt: %
- @echo "Running optimizier test on $<"
- @./TestOptimizer.sh $<
-
-
-## Rules for compiling %.ll, %.bc, %.s files and
-## for building native SPARC executables.
-##
-include Makefile.tests
+DIRS = Feature Regression Programs
+include ../Makefile.common \ No newline at end of file