]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - opencl/llvm.git/commitdiff
tests: Kill off custom targets which were just there for TestRunner.sh.
authorDaniel Dunbar <daniel@zuster.org>
Mon, 2 Aug 2010 00:52:44 +0000 (00:52 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Mon, 2 Aug 2010 00:52:44 +0000 (00:52 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110003 91177308-0d34-0410-b5e6-96231b3b80d8

Makefile
test/Makefile

index e93ef605be95c6ef1f37d33c953a4a3e8fd8fd27..d810b5f681a1f35aa63f06ba6d0b1d36ceac0a34 100644 (file)
--- 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
 
index dc28e6d592480d87385d54bc3a0d953026c60aeb..0dc6d76eec62969f4b7a98738eb52bc47a4d8a76 100644 (file)
@@ -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`