mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-10 12:40:58 +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>
|
2000-07-04 Oliver Kiddle <opk@zsh.org>
|
||||||
|
|
||||||
* 12165: Completion/User/_arp: new completion for arp
|
* 12165: Completion/User/_arp: new completion for arp
|
||||||
|
|
|
@ -45,7 +45,7 @@ check test:
|
||||||
cd $(dir_top) && \
|
cd $(dir_top) && \
|
||||||
$(MAKE) MODDIR=`pwd`/$(subdir)/Modules install.modules > /dev/null; \
|
$(MAKE) MODDIR=`pwd`/$(subdir)/Modules install.modules > /dev/null; \
|
||||||
fi
|
fi
|
||||||
for f in $(sdir)/$(TESTNUM)*.ztst; do \
|
-for f in $(sdir)/$(TESTNUM)*.ztst; do \
|
||||||
$(dir_top)/Src/zsh -f $(sdir)/ztst.zsh $$f; \
|
$(dir_top)/Src/zsh -f $(sdir)/ztst.zsh $$f; \
|
||||||
done
|
done
|
||||||
rm -rf Modules .zcompdump
|
rm -rf Modules .zcompdump
|
||||||
|
|
Loading…
Reference in a new issue