mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-11 13:01:28 +02:00
11419: Control "make check" with the TESTNUM variable.
This commit is contained in:
parent
9f3d6b63a0
commit
6c44d97386
2 changed files with 11 additions and 3 deletions
|
@ -1,5 +1,8 @@
|
||||||
2000-05-16 Bart Schaefer <schaefer@zsh.org>
|
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,
|
* Felix Rosencrantz: 11398: Completion/User/_lzop,
|
||||||
Completion/Bsd/_bsd_pkg: Fix typos in option descriptions.
|
Completion/Bsd/_bsd_pkg: Fix typos in option descriptions.
|
||||||
|
|
||||||
|
|
|
@ -40,10 +40,15 @@ INSTALL = @INSTALL@
|
||||||
|
|
||||||
# ========== DEPENDENCIES FOR TESTING ==========
|
# ========== DEPENDENCIES FOR TESTING ==========
|
||||||
|
|
||||||
tests:
|
check test:
|
||||||
for f in *.ztst; do \
|
if test -n "$(DLLD)"; then \
|
||||||
../Src/zsh ztst.zsh $$f; \
|
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
|
done
|
||||||
|
rm -rf Modules
|
||||||
|
|
||||||
# ========== DEPENDENCIES FOR CLEANUP ==========
|
# ========== DEPENDENCIES FOR CLEANUP ==========
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue