Removing Makefiles. Regression tests are now run by QMTest.
authorJohn Criswell <criswell@uiuc.edu>
Mon, 15 Sep 2003 20:21:38 +0000 (20:21 +0000)
committerJohn Criswell <criswell@uiuc.edu>
Mon, 15 Sep 2003 20:21:38 +0000 (20:21 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8548 91177308-0d34-0410-b5e6-96231b3b80d8

47 files changed:
test/Analysis/BasicAA/Makefile [deleted file]
test/Analysis/DSGraph/Makefile [deleted file]
test/Analysis/Dominators/Makefile [deleted file]
test/Analysis/LoopInfo/Makefile [deleted file]
test/Analysis/Makefile [deleted file]
test/Assembler/Makefile [deleted file]
test/BugPoint/Makefile [deleted file]
test/C++Frontend/EH/Makefile [deleted file]
test/C++Frontend/Makefile [deleted file]
test/CBackend/Makefile [deleted file]
test/CFrontend/Makefile [deleted file]
test/Jello/Makefile [deleted file]
test/LLC/Makefile [deleted file]
test/Linker/Makefile [deleted file]
test/Other/Makefile [deleted file]
test/TableGen/Makefile [deleted file]
test/Transforms/ADCE/Makefile [deleted file]
test/Transforms/BasicAA/Makefile [deleted file]
test/Transforms/ConstProp/Makefile [deleted file]
test/Transforms/ConstantMerge/Makefile [deleted file]
test/Transforms/CorrelatedExprs/Makefile [deleted file]
test/Transforms/DSAnalysis/Makefile [deleted file]
test/Transforms/DeadArgElim/Makefile [deleted file]
test/Transforms/DecomposeMultiDimRefs/Makefile [deleted file]
test/Transforms/FunctionResolve/Makefile [deleted file]
test/Transforms/GCSE/Makefile [deleted file]
test/Transforms/GlobalDCE/Makefile [deleted file]
test/Transforms/IndVarsSimplify/Makefile [deleted file]
test/Transforms/Inline/Makefile [deleted file]
test/Transforms/InstCombine/Makefile [deleted file]
test/Transforms/LICM/Makefile [deleted file]
test/Transforms/LevelRaise/Makefile [deleted file]
test/Transforms/LoopPreheaders/Makefile [deleted file]
test/Transforms/LowerSetJmp/Makefile [deleted file]
test/Transforms/LowerSwitch/Makefile [deleted file]
test/Transforms/Makefile [deleted file]
test/Transforms/Mem2Reg/Makefile [deleted file]
test/Transforms/PRE/Makefile [deleted file]
test/Transforms/PiNodeInserter/Makefile [deleted file]
test/Transforms/ProfilePaths/Makefile [deleted file]
test/Transforms/PruneEH/Makefile [deleted file]
test/Transforms/Reassociate/Makefile [deleted file]
test/Transforms/SCCP/Makefile [deleted file]
test/Transforms/ScalarRepl/Makefile [deleted file]
test/Transforms/SimplifyCFG/Makefile [deleted file]
test/Transforms/TailDup/Makefile [deleted file]
test/Verifier/Makefile [deleted file]

diff --git a/test/Analysis/BasicAA/Makefile b/test/Analysis/BasicAA/Makefile
deleted file mode 100644 (file)
index 91acd4d..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-
-LEVEL = ../../../..
-include $(LEVEL)/test/Makefile.tests
-
-TESTS := $(wildcard *.ll)
-
-all:: $(addprefix Output/, $(TESTS:%.ll=%.ll.out))
-
-Output/%.ll.out: %.ll Output/.dir $(LOPT)
-       -$(TESTRUNR) $<
diff --git a/test/Analysis/DSGraph/Makefile b/test/Analysis/DSGraph/Makefile
deleted file mode 100644 (file)
index bc24e5c..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-
-LEVEL = ../../../..
-include $(LEVEL)/test/Makefile.tests
-
-TESTS := $(wildcard *.ll)
-
-all:: $(addprefix Output/, $(TESTS:%.ll=%.ll.out))
-
-$(addprefix Output/, $(TESTS:%.ll=%.ll.out)):
-Output/%.ll.out: %.ll Output/.dir $(LOPT) $(LANALYZE)
-       -$(TESTRUNR) $<
-
-clean::
-       -rm -f *.dot *.ps
diff --git a/test/Analysis/Dominators/Makefile b/test/Analysis/Dominators/Makefile
deleted file mode 100644 (file)
index 91acd4d..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-
-LEVEL = ../../../..
-include $(LEVEL)/test/Makefile.tests
-
-TESTS := $(wildcard *.ll)
-
-all:: $(addprefix Output/, $(TESTS:%.ll=%.ll.out))
-
-Output/%.ll.out: %.ll Output/.dir $(LOPT)
-       -$(TESTRUNR) $<
diff --git a/test/Analysis/LoopInfo/Makefile b/test/Analysis/LoopInfo/Makefile
deleted file mode 100644 (file)
index 7ef328b..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-
-LEVEL = ../../../..
-include $(LEVEL)/test/Makefile.tests
-
-TESTS := $(wildcard *.ll)
-
-all:: $(addprefix Output/, $(TESTS:%.ll=%.ll.out))
-
-Output/%.ll.out: %.ll Output/.dir $(LANALYZE)
-       -$(TESTRUNR) $<
diff --git a/test/Analysis/Makefile b/test/Analysis/Makefile
deleted file mode 100644 (file)
index ad2c49e..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-#                   test/Regression/Analysis/Makefile
-
-LEVEL = ../../..
-DIRS  = Dominators \
-       DSGraph \
-        LoopInfo
-include $(LEVEL)/Makefile.common
diff --git a/test/Assembler/Makefile b/test/Assembler/Makefile
deleted file mode 100644 (file)
index f931c40..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-#                    test/Regression/Assembler/Makefile
-#
-# This directory contains regression tests for the LLVM assembler program.  
-# These LLVM source file tests are just required to assembler properly to pass.
-#
-LEVEL = ../../..
-include $(LEVEL)/test/Makefile.tests
-
-TESTS := $(wildcard *.ll)
-FTESTS := $(wildcard *.llx)   # Freeform tests
-
-all:: $(addprefix Output/, $(TESTS:%.ll=%.tbc))
-
-Output/%.tbc: %.ll $(LAS) Output/.dir
-       @echo "======== Assembling $<"
-       $(LAS) -d -f $< -o $@ > /dev/null 2>&1 || \
-                 ( rm -f $@; $(FAILURE) $@ )
-
-all:: $(addprefix Output/, $(FTESTS:%.llx=%.llx.out))
-
-Output/%.llx.out: %.llx Output/.dir $(LAS)
-       -$(TESTRUNR) $<
-
diff --git a/test/BugPoint/Makefile b/test/BugPoint/Makefile
deleted file mode 100644 (file)
index aea9a65..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-#                    test/Regression/Assembler/Makefile
-#
-# This directory contains regression tests for the LLVM assembler program.  
-# These LLVM source file tests are just required to assembler properly to pass.
-#
-LEVEL = ../../..
-include $(LEVEL)/test/Makefile.tests
-
-TESTS := $(wildcard *.ll)
-
-all:: $(addprefix Output/, $(TESTS:%.ll=%.ll.out))
-
-Output/%.ll.out: %.ll Output/.dir $(LAS) $(LBUGPOINT)
-       -$(TESTRUNR) $<
-       -@# Remove temporary files generated...
-       -@rm -f bugpoint-*
-
-clean::
-       rm -f *.bc
diff --git a/test/C++Frontend/EH/Makefile b/test/C++Frontend/EH/Makefile
deleted file mode 100644 (file)
index 0375308..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-#                   test/Regression/C++Frontend/EH/Makefile
-#
-# This directory contains exception handling regression tests for the GCC C++ 
-# front-end for LLVM.  These tests are C++ source files that are input to GCC 
-# and compiled to .ll files. After that, the files are assembled and executed
-# by the LLVM backends.
-#
-LEVEL = ../../../..
-include $(LEVEL)/test/Programs/SingleSource/Makefile.singlesrc
-
-## These should eventually be automatic!
-LIBS := -lexception -lsupc++
\ No newline at end of file
diff --git a/test/C++Frontend/Makefile b/test/C++Frontend/Makefile
deleted file mode 100644 (file)
index 3b1ac98..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-#             test/Regression/C++Frontend/CompileFail/Makefile
-#
-# This directory contains regression tests for the GCC C++ frontend for LLVM.  
-# These tests are C++ source files that are input to GCC and compiled to .ll
-# files. After that, the files are assembled by the LLVM 'as' program to make
-# sure GCC emitted something valid.  This is intended to catch crashers and bad
-# output by GCC.  Miscompilations by GCC should be caught by the 
-# test/Programs/SingleSource/UnitTests test suite
-#
-LEVEL = ../../../..
-include $(LEVEL)/test/Makefile.tests
-
-TESTS := $(wildcard *.cpp)
-TR_TESTS := $(wildcard *.cpp.tr)
-
-all:: $(addprefix Output/, $(TESTS:%.cpp=%.tbc))
-all:: $(addprefix Output/, $(TR_TESTS:%=%.out))
-
-Output/%.cpp.tr.out: %.cpp.tr Output/.dir $(LCC1XX)
-       -$(TESTRUNR) $<
diff --git a/test/CBackend/Makefile b/test/CBackend/Makefile
deleted file mode 100644 (file)
index 5dc7ffe..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-#                    test/Regression/CBackend/Makefile
-#
-# This directory contains regression tests for the C backend for LLVM.  
-# These testcases are assembled with the LLVM assembler, then disassembled into
-# C code.  The C code should be compilable with the standard C compiler.
-#
-LEVEL = ../../..
-include $(LEVEL)/test/Makefile.tests
-
-.PRECIOUS: Output/%.c
-
-TESTS := $(wildcard *.ll)
-FTESTS := $(wildcard *.llx)   # Freeform tests
-
-all:: $(addprefix Output/, $(TESTS:%.ll=%.to)) $(addprefix Output/, $(FTESTS:%.llx=%.llx.out))
-
-Output/%.to: Output/%.c
-       $(CC) -c -Werror $< -o $@ || \
-               (rm -f $@; $(FAILURE) $@ )
-
-Output/%.c: %.ll Output/.dir $(LAS) $(LDIS)
-       $(LAS) < $< | $(LDIS) -c > $@ || \
-               (rm -f $@; $(FAILURE) $@ )
-
-Output/%.llx.out: %.llx Output/.dir $(LAS) $(LDIS)
-       -$(TESTRUNR) $<
-
diff --git a/test/CFrontend/Makefile b/test/CFrontend/Makefile
deleted file mode 100644 (file)
index b1017e2..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-#                       test/Regression/CFrontend/Makefile
-#
-# This directory contains regression tests for the GCC C frontend for LLVM.  
-# These tests are C source files that are input to GCC and compiled to .ll
-# files. After that, the files are assembled by the LLVM 'as' program to make
-# sure GCC emitted something valid.  This is intended to catch crashers and bad
-# output by GCC.  Miscompilations by GCC should be caught by the 
-# test/Programs/SingleSource/UnitTests test suite
-#
-LEVEL = ../../..
-include $(LEVEL)/test/Makefile.tests
-
-TESTS := $(wildcard *.c)
-TR_TESTS := $(wildcard *.c.tr)
-
-all:: $(addprefix Output/, $(TESTS:%.c=%.tbc))
-all:: $(addprefix Output/, $(TR_TESTS:%=%.out))
-
-Output/%.c.tr.out: %.c.tr Output/.dir $(LCC1)
-       -$(TESTRUNR) $<
diff --git a/test/Jello/Makefile b/test/Jello/Makefile
deleted file mode 100644 (file)
index 408f80a..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-#                    test/Regression/Jello/Makefile
-#
-# This directory contains regression tests for the LLVM x86 JIT  
-#
-LEVEL = ../../..
-include $(LEVEL)/test/Makefile.tests
-
-TESTS := $(wildcard *.ll)
-FTESTS := $(wildcard *.llx)   # Freeform tests
-
-all:: $(addprefix Output/, $(TESTS:%.ll=%.out))
-
-LLI_FLAGS = -force-interpreter=false
-
-ifdef DISABLE_FP_ELIM
-LLI_FLAGS += -disable-fp-elim
-endif
-
-Output/%.out: Output/%.bc $(LLI)
-       @echo "======== Running $< ==================="
-       $(VERB) $(LLI) $(LLI_FLAGS) -stats $< > $@ 2>&1 || \
-                 ( cat $@; rm -f $@; $(FAILURE) $@ )
-
-
-all:: $(addprefix Output/, $(FTESTS:%.llx=%.llx.out))
-
-Output/%.llx.out: %.llx Output/.dir $(LJELLO)
-       -$(TESTRUNR) $<
-
diff --git a/test/LLC/Makefile b/test/LLC/Makefile
deleted file mode 100644 (file)
index 3c07cd0..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-#                    test/Regression/LLC/Makefile
-#
-# This directory contains regression tests for the LLVM sparc backend.  
-#
-LEVEL = ../../..
-include $(LEVEL)/test/Makefile.tests
-
-# Only .ll tests here.  C tests are run via Makefile.singlesrc above.
-# 
-LL_TESTS := $(wildcard *.ll)
-LLX_TESTS := $(wildcard *.llx)
-
-all:: $(addprefix Output/, $(LL_TESTS:%.ll=%.ts)) 
-all:: $(addprefix Output/, $(LLX_TESTS:%.llx=%.llx.out))
-
-Output/%.ts: Output/%.bc $(LLC) Output/.dir
-       @echo "======== Compiling $< =========="
-       $(LLC) -f $< -o $@ || \
-                 ( rm -f $@; $(FAILURE) $@ )
-
-Output/%.llx.out: %.llx Output/.dir $(LLC)
-       -$(TESTRUNR) $<
diff --git a/test/Linker/Makefile b/test/Linker/Makefile
deleted file mode 100644 (file)
index c18a877..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-LEVEL = ../../..
-include $(LEVEL)/test/Makefile.tests
-
-TESTS := $(wildcard *.ll)
-
-all:: $(addprefix Output/, $(TESTS:%.ll=%.ll.out))
-
-Output/%.ll.out: %.ll Output/.dir $(LLINK)
-       -$(TESTRUNR) $<
diff --git a/test/Other/Makefile b/test/Other/Makefile
deleted file mode 100644 (file)
index e1a8697..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-
-LEVEL = ../../..
-include $(LEVEL)/test/Makefile.tests
-
-TESTS := $(wildcard *.ll)
-
-all:: $(addprefix Output/, $(TESTS:%.ll=%.ll.out))
-
-Output/%.ll.out: %.ll Output/.dir $(LANALYZE)
-       -$(TESTRUNR) $<
diff --git a/test/TableGen/Makefile b/test/TableGen/Makefile
deleted file mode 100644 (file)
index c254d80..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-
-LEVEL = ../../..
-include $(LEVEL)/test/Makefile.tests
-
-TESTS := $(wildcard *.td)
-
-all:: $(addprefix Output/, $(TESTS:%=%.out))
-
-Output/%.out: % Output/.dir $(TBLGEN)
-       -$(TESTRUNR) $<
diff --git a/test/Transforms/ADCE/Makefile b/test/Transforms/ADCE/Makefile
deleted file mode 100644 (file)
index 91acd4d..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-
-LEVEL = ../../../..
-include $(LEVEL)/test/Makefile.tests
-
-TESTS := $(wildcard *.ll)
-
-all:: $(addprefix Output/, $(TESTS:%.ll=%.ll.out))
-
-Output/%.ll.out: %.ll Output/.dir $(LOPT)
-       -$(TESTRUNR) $<
diff --git a/test/Transforms/BasicAA/Makefile b/test/Transforms/BasicAA/Makefile
deleted file mode 100644 (file)
index 91acd4d..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-
-LEVEL = ../../../..
-include $(LEVEL)/test/Makefile.tests
-
-TESTS := $(wildcard *.ll)
-
-all:: $(addprefix Output/, $(TESTS:%.ll=%.ll.out))
-
-Output/%.ll.out: %.ll Output/.dir $(LOPT)
-       -$(TESTRUNR) $<
diff --git a/test/Transforms/ConstProp/Makefile b/test/Transforms/ConstProp/Makefile
deleted file mode 100644 (file)
index 91acd4d..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-
-LEVEL = ../../../..
-include $(LEVEL)/test/Makefile.tests
-
-TESTS := $(wildcard *.ll)
-
-all:: $(addprefix Output/, $(TESTS:%.ll=%.ll.out))
-
-Output/%.ll.out: %.ll Output/.dir $(LOPT)
-       -$(TESTRUNR) $<
diff --git a/test/Transforms/ConstantMerge/Makefile b/test/Transforms/ConstantMerge/Makefile
deleted file mode 100644 (file)
index 91acd4d..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-
-LEVEL = ../../../..
-include $(LEVEL)/test/Makefile.tests
-
-TESTS := $(wildcard *.ll)
-
-all:: $(addprefix Output/, $(TESTS:%.ll=%.ll.out))
-
-Output/%.ll.out: %.ll Output/.dir $(LOPT)
-       -$(TESTRUNR) $<
diff --git a/test/Transforms/CorrelatedExprs/Makefile b/test/Transforms/CorrelatedExprs/Makefile
deleted file mode 100644 (file)
index 91acd4d..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-
-LEVEL = ../../../..
-include $(LEVEL)/test/Makefile.tests
-
-TESTS := $(wildcard *.ll)
-
-all:: $(addprefix Output/, $(TESTS:%.ll=%.ll.out))
-
-Output/%.ll.out: %.ll Output/.dir $(LOPT)
-       -$(TESTRUNR) $<
diff --git a/test/Transforms/DSAnalysis/Makefile b/test/Transforms/DSAnalysis/Makefile
deleted file mode 100644 (file)
index f5c8fad..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-#                    test/Regression/Transforms/DSAnalysis/Makefile
-#
-# This directory contains test cases for the llvm data structure analysis 
-# library.  These are meant to test all of the nooks and cranies of the 
-# algorithm, although we really have no way to verify that the answers produced
-# are correct.
-#
-LEVEL = ../../../..
-include $(LEVEL)/test/Makefile.tests
-
-## Get absolute pathname for analyze
-LANALYZE_ABS := $(shell cd `dirname $(LANALYZE)`; pwd)/analyze
-
-TESTS := $(wildcard *.ll)
-FTESTS := $(wildcard *.llx)   # Freeform tests
-
-all:: $(addprefix Output/, $(TESTS:%.ll=%.out))
-
-Output/%.out: %.ll $(LANALYZE) Output/.dir
-       (cd Output/; $(LANALYZE_ABS) -tddatastructure ../$< || \
-                 ( rm -f ../$@; ../$(FAILURE) ../$@ ))
-
-all:: $(addprefix Output/, $(FTESTS:%.llx=%.llx.out))
-
-clean::
-       rm -f *.ps *.dot
-
-Output/%.llx.out: %.llx Output/.dir $(LAS)
-       -$(TESTRUNR) $<
-
diff --git a/test/Transforms/DeadArgElim/Makefile b/test/Transforms/DeadArgElim/Makefile
deleted file mode 100644 (file)
index 91acd4d..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-
-LEVEL = ../../../..
-include $(LEVEL)/test/Makefile.tests
-
-TESTS := $(wildcard *.ll)
-
-all:: $(addprefix Output/, $(TESTS:%.ll=%.ll.out))
-
-Output/%.ll.out: %.ll Output/.dir $(LOPT)
-       -$(TESTRUNR) $<
diff --git a/test/Transforms/DecomposeMultiDimRefs/Makefile b/test/Transforms/DecomposeMultiDimRefs/Makefile
deleted file mode 100644 (file)
index fdbf3fa..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-#            test/Regression/Transforms/DecomposeArrayRefs/Makefile
-#
-# This directory contains regression tests for the DecomposeArrayRefs pass.
-# Since the main tests are single C source files, we'll use the same
-# Makefile as test/Programs/SingleSource.
-# The *.ll tests are mainly useful to run manually.
-#
-LEVEL = ../../../..
-include $(LEVEL)/test/Programs/SingleSource/Makefile.singlesrc
-
-LLTESTS := $(wildcard *.ll)
-CTESTS  := $(wildcard *.c) 
-TESTS   := $(LLTESTS) $(CTESTS)
-
-all:: $(addprefix Output/, $(LLTESTS:%.ll=%.ll.out))
-
-Output/%.ll.out: %.ll Output/.dir $(LOPT)
-       -$(TESTRUNR) $<
-
diff --git a/test/Transforms/FunctionResolve/Makefile b/test/Transforms/FunctionResolve/Makefile
deleted file mode 100644 (file)
index 91acd4d..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-
-LEVEL = ../../../..
-include $(LEVEL)/test/Makefile.tests
-
-TESTS := $(wildcard *.ll)
-
-all:: $(addprefix Output/, $(TESTS:%.ll=%.ll.out))
-
-Output/%.ll.out: %.ll Output/.dir $(LOPT)
-       -$(TESTRUNR) $<
diff --git a/test/Transforms/GCSE/Makefile b/test/Transforms/GCSE/Makefile
deleted file mode 100644 (file)
index 91acd4d..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-
-LEVEL = ../../../..
-include $(LEVEL)/test/Makefile.tests
-
-TESTS := $(wildcard *.ll)
-
-all:: $(addprefix Output/, $(TESTS:%.ll=%.ll.out))
-
-Output/%.ll.out: %.ll Output/.dir $(LOPT)
-       -$(TESTRUNR) $<
diff --git a/test/Transforms/GlobalDCE/Makefile b/test/Transforms/GlobalDCE/Makefile
deleted file mode 100644 (file)
index 91acd4d..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-
-LEVEL = ../../../..
-include $(LEVEL)/test/Makefile.tests
-
-TESTS := $(wildcard *.ll)
-
-all:: $(addprefix Output/, $(TESTS:%.ll=%.ll.out))
-
-Output/%.ll.out: %.ll Output/.dir $(LOPT)
-       -$(TESTRUNR) $<
diff --git a/test/Transforms/IndVarsSimplify/Makefile b/test/Transforms/IndVarsSimplify/Makefile
deleted file mode 100644 (file)
index 91acd4d..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-
-LEVEL = ../../../..
-include $(LEVEL)/test/Makefile.tests
-
-TESTS := $(wildcard *.ll)
-
-all:: $(addprefix Output/, $(TESTS:%.ll=%.ll.out))
-
-Output/%.ll.out: %.ll Output/.dir $(LOPT)
-       -$(TESTRUNR) $<
diff --git a/test/Transforms/Inline/Makefile b/test/Transforms/Inline/Makefile
deleted file mode 100644 (file)
index 91acd4d..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-
-LEVEL = ../../../..
-include $(LEVEL)/test/Makefile.tests
-
-TESTS := $(wildcard *.ll)
-
-all:: $(addprefix Output/, $(TESTS:%.ll=%.ll.out))
-
-Output/%.ll.out: %.ll Output/.dir $(LOPT)
-       -$(TESTRUNR) $<
diff --git a/test/Transforms/InstCombine/Makefile b/test/Transforms/InstCombine/Makefile
deleted file mode 100644 (file)
index 91acd4d..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-
-LEVEL = ../../../..
-include $(LEVEL)/test/Makefile.tests
-
-TESTS := $(wildcard *.ll)
-
-all:: $(addprefix Output/, $(TESTS:%.ll=%.ll.out))
-
-Output/%.ll.out: %.ll Output/.dir $(LOPT)
-       -$(TESTRUNR) $<
diff --git a/test/Transforms/LICM/Makefile b/test/Transforms/LICM/Makefile
deleted file mode 100644 (file)
index 91acd4d..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-
-LEVEL = ../../../..
-include $(LEVEL)/test/Makefile.tests
-
-TESTS := $(wildcard *.ll)
-
-all:: $(addprefix Output/, $(TESTS:%.ll=%.ll.out))
-
-Output/%.ll.out: %.ll Output/.dir $(LOPT)
-       -$(TESTRUNR) $<
diff --git a/test/Transforms/LevelRaise/Makefile b/test/Transforms/LevelRaise/Makefile
deleted file mode 100644 (file)
index 91acd4d..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-
-LEVEL = ../../../..
-include $(LEVEL)/test/Makefile.tests
-
-TESTS := $(wildcard *.ll)
-
-all:: $(addprefix Output/, $(TESTS:%.ll=%.ll.out))
-
-Output/%.ll.out: %.ll Output/.dir $(LOPT)
-       -$(TESTRUNR) $<
diff --git a/test/Transforms/LoopPreheaders/Makefile b/test/Transforms/LoopPreheaders/Makefile
deleted file mode 100644 (file)
index 91acd4d..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-
-LEVEL = ../../../..
-include $(LEVEL)/test/Makefile.tests
-
-TESTS := $(wildcard *.ll)
-
-all:: $(addprefix Output/, $(TESTS:%.ll=%.ll.out))
-
-Output/%.ll.out: %.ll Output/.dir $(LOPT)
-       -$(TESTRUNR) $<
diff --git a/test/Transforms/LowerSetJmp/Makefile b/test/Transforms/LowerSetJmp/Makefile
deleted file mode 100644 (file)
index 91acd4d..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-
-LEVEL = ../../../..
-include $(LEVEL)/test/Makefile.tests
-
-TESTS := $(wildcard *.ll)
-
-all:: $(addprefix Output/, $(TESTS:%.ll=%.ll.out))
-
-Output/%.ll.out: %.ll Output/.dir $(LOPT)
-       -$(TESTRUNR) $<
diff --git a/test/Transforms/LowerSwitch/Makefile b/test/Transforms/LowerSwitch/Makefile
deleted file mode 100644 (file)
index 91acd4d..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-
-LEVEL = ../../../..
-include $(LEVEL)/test/Makefile.tests
-
-TESTS := $(wildcard *.ll)
-
-all:: $(addprefix Output/, $(TESTS:%.ll=%.ll.out))
-
-Output/%.ll.out: %.ll Output/.dir $(LOPT)
-       -$(TESTRUNR) $<
diff --git a/test/Transforms/Makefile b/test/Transforms/Makefile
deleted file mode 100644 (file)
index 7ad75f5..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-LEVEL = ../../..
-DIRS  = ADCE \
-       ConstProp \
-       ConstantMerge \
-       CorrelatedExprs \
-       DecomposeMultiDimRefs \
-       FunctionResolve \
-       GCSE \
-       GlobalDCE \
-       IndVarsSimplify \
-       Inline \
-       InstCombine \
-       LevelRaise \
-       LICM \
-       LoopPreheaders \
-       LowerSwitch \
-       Mem2Reg \
-       PiNodeInserter \
-       PRE \
-       PruneEH \
-       ProfilePaths \
-       Reassociate \
-       SCCP \
-       ScalarRepl \
-       SimplifyCFG \
-       TailDup
-
-include $(LEVEL)/Makefile.common
diff --git a/test/Transforms/Mem2Reg/Makefile b/test/Transforms/Mem2Reg/Makefile
deleted file mode 100644 (file)
index 91acd4d..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-
-LEVEL = ../../../..
-include $(LEVEL)/test/Makefile.tests
-
-TESTS := $(wildcard *.ll)
-
-all:: $(addprefix Output/, $(TESTS:%.ll=%.ll.out))
-
-Output/%.ll.out: %.ll Output/.dir $(LOPT)
-       -$(TESTRUNR) $<
diff --git a/test/Transforms/PRE/Makefile b/test/Transforms/PRE/Makefile
deleted file mode 100644 (file)
index 91acd4d..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-
-LEVEL = ../../../..
-include $(LEVEL)/test/Makefile.tests
-
-TESTS := $(wildcard *.ll)
-
-all:: $(addprefix Output/, $(TESTS:%.ll=%.ll.out))
-
-Output/%.ll.out: %.ll Output/.dir $(LOPT)
-       -$(TESTRUNR) $<
diff --git a/test/Transforms/PiNodeInserter/Makefile b/test/Transforms/PiNodeInserter/Makefile
deleted file mode 100644 (file)
index 91acd4d..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-
-LEVEL = ../../../..
-include $(LEVEL)/test/Makefile.tests
-
-TESTS := $(wildcard *.ll)
-
-all:: $(addprefix Output/, $(TESTS:%.ll=%.ll.out))
-
-Output/%.ll.out: %.ll Output/.dir $(LOPT)
-       -$(TESTRUNR) $<
diff --git a/test/Transforms/ProfilePaths/Makefile b/test/Transforms/ProfilePaths/Makefile
deleted file mode 100644 (file)
index 91acd4d..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-
-LEVEL = ../../../..
-include $(LEVEL)/test/Makefile.tests
-
-TESTS := $(wildcard *.ll)
-
-all:: $(addprefix Output/, $(TESTS:%.ll=%.ll.out))
-
-Output/%.ll.out: %.ll Output/.dir $(LOPT)
-       -$(TESTRUNR) $<
diff --git a/test/Transforms/PruneEH/Makefile b/test/Transforms/PruneEH/Makefile
deleted file mode 100644 (file)
index e92df45..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-
-LEVEL = ../../../..
-include $(LEVEL)/test/Makefile.tests
-
-TESTS := $(wildcard *.llx)
-
-all:: $(addprefix Output/, $(TESTS:%.llx=%.llx.out))
-
-Output/%.llx.out: %.llx Output/.dir $(LOPT)
-       -$(TESTRUNR) $<
diff --git a/test/Transforms/Reassociate/Makefile b/test/Transforms/Reassociate/Makefile
deleted file mode 100644 (file)
index 91acd4d..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-
-LEVEL = ../../../..
-include $(LEVEL)/test/Makefile.tests
-
-TESTS := $(wildcard *.ll)
-
-all:: $(addprefix Output/, $(TESTS:%.ll=%.ll.out))
-
-Output/%.ll.out: %.ll Output/.dir $(LOPT)
-       -$(TESTRUNR) $<
diff --git a/test/Transforms/SCCP/Makefile b/test/Transforms/SCCP/Makefile
deleted file mode 100644 (file)
index 91acd4d..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-
-LEVEL = ../../../..
-include $(LEVEL)/test/Makefile.tests
-
-TESTS := $(wildcard *.ll)
-
-all:: $(addprefix Output/, $(TESTS:%.ll=%.ll.out))
-
-Output/%.ll.out: %.ll Output/.dir $(LOPT)
-       -$(TESTRUNR) $<
diff --git a/test/Transforms/ScalarRepl/Makefile b/test/Transforms/ScalarRepl/Makefile
deleted file mode 100644 (file)
index 91acd4d..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-
-LEVEL = ../../../..
-include $(LEVEL)/test/Makefile.tests
-
-TESTS := $(wildcard *.ll)
-
-all:: $(addprefix Output/, $(TESTS:%.ll=%.ll.out))
-
-Output/%.ll.out: %.ll Output/.dir $(LOPT)
-       -$(TESTRUNR) $<
diff --git a/test/Transforms/SimplifyCFG/Makefile b/test/Transforms/SimplifyCFG/Makefile
deleted file mode 100644 (file)
index 91acd4d..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-
-LEVEL = ../../../..
-include $(LEVEL)/test/Makefile.tests
-
-TESTS := $(wildcard *.ll)
-
-all:: $(addprefix Output/, $(TESTS:%.ll=%.ll.out))
-
-Output/%.ll.out: %.ll Output/.dir $(LOPT)
-       -$(TESTRUNR) $<
diff --git a/test/Transforms/TailDup/Makefile b/test/Transforms/TailDup/Makefile
deleted file mode 100644 (file)
index 91acd4d..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-
-LEVEL = ../../../..
-include $(LEVEL)/test/Makefile.tests
-
-TESTS := $(wildcard *.ll)
-
-all:: $(addprefix Output/, $(TESTS:%.ll=%.ll.out))
-
-Output/%.ll.out: %.ll Output/.dir $(LOPT)
-       -$(TESTRUNR) $<
diff --git a/test/Verifier/Makefile b/test/Verifier/Makefile
deleted file mode 100644 (file)
index 2812a7e..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-#                    test/Regression/Verifier/Makefile
-#
-# This directory contains regression tests for the LLVM verifier pass. Basically
-# all of these LLVM source files are invalid programs that should be marked as
-# such by the verifier
-
-LEVEL = ../../..
-include $(LEVEL)/test/Makefile.tests
-
-TESTS := $(wildcard *.ll)
-
-all:: $(addprefix Output/, $(TESTS:%.ll=%.ntbc))
-
-Output/%.ntbc: %.ll $(LAS) Output/.dir
-       @echo "======== Verifying $< ==========="
-       if $(LAS) -f $< -o /dev/null; \
-       then $(FAILURE) $@; exit 1; \
-       else touch $@; exit 0;\
-       fi