1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-06-01 12:56:04 +02:00

11419: Control "make check" with the TESTNUM variable.

This commit is contained in:
Bart Schaefer 2000-05-16 17:39:11 +00:00
parent 9f3d6b63a0
commit 6c44d97386
2 changed files with 11 additions and 3 deletions

View File

@ -1,5 +1,8 @@
2000-05-16 Bart Schaefer <schaefer@zsh.org>
* 11419: Test/Makefile.in: Interpolate TESTNUM variable in the
glob that specifies which tests are run.
* Felix Rosencrantz: 11398: Completion/User/_lzop,
Completion/Bsd/_bsd_pkg: Fix typos in option descriptions.

View File

@ -40,10 +40,15 @@ INSTALL = @INSTALL@
# ========== DEPENDENCIES FOR TESTING ==========
tests:
for f in *.ztst; do \
../Src/zsh ztst.zsh $$f; \
check test:
if test -n "$(DLLD)"; then \
cd $(dir_top) && \
$(MAKE) MODDIR=`pwd`/$(subdir)/Modules install.modules > /dev/null; \
fi
for f in $(sdir)/$(TESTNUM)*.ztst; do \
$(dir_top)/Src/zsh -f $(sdir)/ztst.zsh $$f; \
done
rm -rf Modules
# ========== DEPENDENCIES FOR CLEANUP ==========