1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-04-30 05:45:16 +02:00

44523: Add ZTST_handler capability.

Defaults to runtests.zsh but can be something else for alternative
test management.
This commit is contained in:
Peter Stephenson 2019-07-16 10:57:35 +01:00
parent 8cbbc04d97
commit ede3e4e61e
2 changed files with 11 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2019-07-16 Peter Stephenson <p.stephenson@samsung.com>
* 44523: Test/Makefile.in: allow ZTST_handler to be something
other than runtests.zsh to accommodate alternative test modes.
2019-07-15 Peter Stephenson <p.stephenson@samsung.com>
* 44509: Src/params.c: Prevent crash with modified PATH / path

View File

@ -40,16 +40,21 @@ INSTALL = @INSTALL@
# ========== DEPENDENCIES FOR TESTING ==========
# If ZTST_handler is not empty, run that instead of runtests.zsh.
# It's assumed to be found in the source directory.
check test:
if test -n "$(DLLD)"; then \
cd $(dir_top) && DESTDIR= \
$(MAKE) MODDIR=`pwd`/$(subdir)/Modules install.modules > /dev/null; \
fi
if test -z "$$ZTST_handler"; then \
ZTST_handler=runtests.zsh; \
fi; \
if ZTST_testlist="`for f in $(sdir)/$(TESTNUM)*.ztst; \
do echo $$f; done`" \
ZTST_srcdir="$(sdir)" \
ZTST_exe=$(dir_top)/Src/zsh@EXEEXT@ \
$(dir_top)/Src/zsh@EXEEXT@ +Z -f $(sdir)/runtests.zsh; then \
$(dir_top)/Src/zsh@EXEEXT@ +Z -f $(sdir)/$$ZTST_handler; then \
stat=0; \
else \
stat=1; \