Remove old test runner, this has moved to LLVM/utils/lit and all known clients
have been updated.
 - Please let me know of any problems.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@82524 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/Makefile b/test/Makefile
index 9ed6834..6ed13d6 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -8,8 +8,8 @@
 TESTDIRS ?= $(PROJ_SRC_DIR)
 endif
 
-# LIT2 wants objdir paths, so it will pick up the lit.site.cfg.
-LIT2_TESTDIRS := $(TESTDIRS:$(PROJ_SRC_DIR)%=$(PROJ_OBJ_DIR)%)
+# 'lit' wants objdir paths, so it will pick up the lit.site.cfg.
+TESTDIRS := $(TESTDIRS:$(PROJ_SRC_DIR)%=$(PROJ_OBJ_DIR)%)
 
 ifndef TESTARGS
 ifdef VERBOSE
@@ -25,20 +25,10 @@
   VGARG=
 endif
 
-ifndef LIT1
 all:: lit.site.cfg
 	@ echo '--- Running clang tests for $(TARGET_TRIPLE) ---'
 	@ $(LLVM_SRC_ROOT)/utils/lit/lit.py \
-	  $(TESTARGS) $(LIT2_TESTDIRS) $(VGARG)
-else
-all::
-	@ echo '--- Running clang tests for $(TARGET_TRIPLE) ---'
-	@ $(PROJ_SRC_DIR)/../utils/test/MultiTestRunner.py \
-	  --root $(PROJ_SRC_DIR) \
-	  --path $(ToolDir) \
-	  --path $(LLVM_SRC_ROOT)/test/Scripts \
 	  $(TESTARGS) $(TESTDIRS) $(VGARG)
-endif
 
 FORCE: