summaryrefslogtreecommitdiffstats
path: root/test/Makefile
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-09-22 05:16:02 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-09-22 05:16:02 +0000
commit5e01e3cae6d0437b4c72b26402fa14e3c909ba7f (patch)
tree3d74bdacdbc3dadf19054f03454fe6bd089e47d2 /test/Makefile
parentcc969fd8360e315a0244a1192ddaedcd751fc7a7 (diff)
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
Diffstat (limited to 'test/Makefile')
-rw-r--r--test/Makefile14
1 files changed, 2 insertions, 12 deletions
diff --git a/test/Makefile b/test/Makefile
index 9ed683435f..6ed13d6b88 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -8,8 +8,8 @@ else
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 @@ else
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: