Document quick-test target.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17644 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2004-11-09 06:32:58 +00:00
parent ed8c089469
commit 8db573e190

View File

@ -149,6 +149,12 @@ site.exp: Makefile $(LLVM_OBJ_ROOT)/Makefile.config
@test ! -f site.exp || mv site.exp site.bak
@mv site.tmp site.exp
#===------------------------------------------------------------------------===#
# quick-test utility. Just runs TestRunner.sh on all the *.ll files in a
# directory. Use like this:
# cd llvm/test ; make quick-test QUICKTEST=Regression/Bytecode
# where QUICKTEST specifies the directory you want to run the tests on.
#===------------------------------------------------------------------------===#
quick-test:
@if test -d "${QUICKTEST}" ; then \
cd $(LLVM_SRC_ROOT)/test/$(QUICKTEST) ; \