mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-20 09:30:43 +00:00
Add a quick-test target that uses QUICKTEST variable to quickly run a
portion of the test suite. e.g.: make quck-test QUICKTEST=Regression/Bytecode git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17643 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
52f20f8308
commit
ed8c089469
@ -149,3 +149,10 @@ site.exp: Makefile $(LLVM_OBJ_ROOT)/Makefile.config
|
||||
@test ! -f site.exp || mv site.exp site.bak
|
||||
@mv site.tmp site.exp
|
||||
|
||||
quick-test:
|
||||
@if test -d "${QUICKTEST}" ; then \
|
||||
cd $(LLVM_SRC_ROOT)/test/$(QUICKTEST) ; \
|
||||
find . -name \*.ll -print -exec $(LLVM_SRC_ROOT)/test/TestRunner.sh {} \; ; \
|
||||
else \
|
||||
echo "Set QUICKTEST=<some directory with TestRunner.sh .ll files in it" ; \
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user