mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-02 22:11:54 +02:00
12167: Ignore failure of "for" loop in "make check".
This commit is contained in:
parent
7f2ee10ba7
commit
23ff230c8e
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2000-07-05 Bart Schaefer <schaefer@zsh.org>
|
||||
|
||||
* 12167: Test/Makefile.in: Ignore failure exit from "for" loop
|
||||
so that cleanup code following it will be executed.
|
||||
|
||||
2000-07-04 Oliver Kiddle <opk@zsh.org>
|
||||
|
||||
* 12165: Completion/User/_arp: new completion for arp
|
||||
|
|
|
@ -45,7 +45,7 @@ check test:
|
|||
cd $(dir_top) && \
|
||||
$(MAKE) MODDIR=`pwd`/$(subdir)/Modules install.modules > /dev/null; \
|
||||
fi
|
||||
for f in $(sdir)/$(TESTNUM)*.ztst; do \
|
||||
-for f in $(sdir)/$(TESTNUM)*.ztst; do \
|
||||
$(dir_top)/Src/zsh -f $(sdir)/ztst.zsh $$f; \
|
||||
done
|
||||
rm -rf Modules .zcompdump
|
||||
|
|
Loading…
Reference in a new issue