summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2010-08-02 00:52:44 +0000
committerDaniel Dunbar <daniel@zuster.org>2010-08-02 00:52:44 +0000
commite3536b89b407a014e82b779972e90987f7f75ac6 (patch)
tree55ad4f85915a7a0c9d0426720a34ae70ccefb0e0
parented56fc363feb42b873873d456e4fd2594e2abb03 (diff)
downloadllvm-e3536b89b407a014e82b779972e90987f7f75ac6.tar.gz
llvm-e3536b89b407a014e82b779972e90987f7f75ac6.tar.bz2
llvm-e3536b89b407a014e82b779972e90987f7f75ac6.tar.xz
tests: Kill off custom targets which were just there for TestRunner.sh.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110003 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--Makefile3
-rw-r--r--test/Makefile20
2 files changed, 0 insertions, 23 deletions
diff --git a/Makefile b/Makefile
index e93ef605be..d810b5f681 100644
--- a/Makefile
+++ b/Makefile
@@ -195,9 +195,6 @@ endif
check-llvm2cpp:
$(Verb)$(MAKE) check TESTSUITE=Feature RUNLLVM2CPP=1
-check-one:
- $(Verb)$(MAKE) -C test check-one TESTONE=$(TESTONE)
-
srpm: $(LLVM_OBJ_ROOT)/llvm.spec
rpmbuild -bs $(LLVM_OBJ_ROOT)/llvm.spec
diff --git a/test/Makefile b/test/Makefile
index dc28e6d592..0dc6d76eec 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -107,26 +107,6 @@ check-local-all:: lit.site.cfg Unit/lit.site.cfg extra-lit-site-cfgs
( $(ULIMIT) \
$(LLVM_SRC_ROOT)/utils/lit/lit.py $(LIT_ARGS) $(LIT_ALL_TESTSUITES) )
-ifdef TESTONE
-CLEANED_TESTONE := $(patsubst %/,%,$(TESTONE))
-CLEANED_TESTONE := $(patsubst test/%,%,$(CLEANED_TESTONE))
-SUBDIR := $(shell dirname $(CLEANED_TESTONE))
-TESTPATH := $(LLVM_SRC_ROOT)/test/$(CLEANED_TESTONE)
-check-one: site.exp $(TCLSH)
- $(Verb)( echo "source $(LLVM_OBJ_ROOT)/test/site.exp" ; \
- echo "set subdir $(SUBDIR)" ; \
- echo "proc pass { msg } { puts \"PASS: \$$msg\" } "; \
- echo "proc fail { msg } { puts \"FAIL: \$$msg\" }" ; \
- echo "proc xfail { msg } { puts \"XFAIL: \$$msg\" }" ; \
- echo "proc xpass { msg } { puts \"XPASS: \$$msg\" }" ; \
- echo "proc verbose args { }" ; \
- echo "source $(LLVM_SRC_ROOT)/test/lib/llvm.exp" ; \
- echo "RunLLVMTests $(TESTPATH)" ) | \
- ( $(ULIMIT) \
- PATH="$(LLVMToolDir):$(LLVM_SRC_ROOT)/test/Scripts:$(PATH)" \
- $(TCLSH) )
-endif
-
clean::
$(RM) -rf `find $(LLVM_OBJ_ROOT)/test -name Output -type d -print`