Removing Makefile. The QMTest program now handles the running of these tests.
authorJohn Criswell <criswell@uiuc.edu>
Mon, 15 Sep 2003 20:18:06 +0000 (20:18 +0000)
committerJohn Criswell <criswell@uiuc.edu>
Mon, 15 Sep 2003 20:18:06 +0000 (20:18 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8547 91177308-0d34-0410-b5e6-96231b3b80d8

test/Feature/Makefile [deleted file]

diff --git a/test/Feature/Makefile b/test/Feature/Makefile
deleted file mode 100644 (file)
index b0eeab8..0000000
+++ /dev/null
@@ -1,46 +0,0 @@
-#                              test/Feature/Makefile
-#
-# This makefile runs a moderate number of tests against LLVM source "feature"
-# tests, which are designed to test individual components of the LLVM language.
-# This runs through three sets of tests, designed to test to (dis)assembler,
-# the optimizer, and the code generator for support for the more esoteric LLVM
-# features.
-#
-
-LEVEL = ../..
-include ../Makefile.tests
-
-TESTS  := $(wildcard *.ll)
-OTESTS := $(addprefix Output/, $(TESTS))  # Tests in output directory
-
-test all :: testasmdis testopt testcbe testsparc
-       @echo "All tests completed!"
-
-testasmdis  : $(addsuffix .asmdis, $(OTESTS))
-testopt     : $(addsuffix .opt   , $(OTESTS))
-
-testcodegen : $(OTESTS:%.ll=%.mc)
-testsparc   : $(OTESTS:%.ll=%.s)
-testcbe     : $(OTESTS:%.ll=%.tc)
-
-Output/%.asmdis: % $(LAS) $(LDIS) Output/.dir
-       @./TestAsmDisasm.sh $< $(LLVMTOOLCURRENT)
-
-Output/%.opt: % $(LAS) $(LDIS) $(LOPT) Output/.dir
-       @./TestOptimizer.sh $< $(LLVMTOOLCURRENT)
-
-Output/%.tc: Output/%.bc $(LDIS)
-       @echo "======== Generating C code for $<"
-       $(LDIS) -c < $< > $@    || \
-                 ( rm -f $@; $(FAILURE) $@ )
-
-Output/%.mc: Output/%.bc $(LLC)
-       @echo "======== Generating machine instructions for $<"
-       $(LLC) -f $(LLCFLAGS) $< > $@ || \
-                 ( rm -f $@; $(FAILURE) $@ )
-
-Output/%.s: Output/%.bc $(LLC)
-       @echo "======== Generating assembly code for $<"
-       $(LLC) -f $(LLCFLAGS) $< -o $@ || \
-                 ( rm -f $@; $(FAILURE) $@ )
-