diff options
-rw-r--r-- | Etc/zsh-development-guide | 2 | ||||
-rw-r--r-- | Makefile.in | 7 | ||||
-rw-r--r-- | Test/Makefile.in | 2 |
3 files changed, 6 insertions, 5 deletions
diff --git a/Etc/zsh-development-guide b/Etc/zsh-development-guide index ef6861761..9ce721d54 100644 --- a/Etc/zsh-development-guide +++ b/Etc/zsh-development-guide @@ -60,7 +60,7 @@ Testing e.g. `expect'). * The directory is not part of the usual process of building and - installation. To run the tests, go to Test and `make test'. Please + installation. To run the tests, go to Test and `make check'. Please report any errors with all the usual information about the zsh version and the system you are using. diff --git a/Makefile.in b/Makefile.in index 0dbf92616..20793167f 100644 --- a/Makefile.in +++ b/Makefile.in @@ -46,9 +46,6 @@ all: config.h (cd $$subdir && $(MAKE) $(MAKEDEFS) $@) || exit 1; \ done -check test: - @echo zsh test suite not available yet - # prepare module configuration prep: @cd Src && $(MAKE) $(MAKEDEFS) $@ @@ -87,6 +84,10 @@ install.fns uninstall.fns: install.info uninstall.info: @cd Doc && $(MAKE) $(MAKEDEFS) $@ +# ========== DEPENDENCIES FOR TESTING ========== +check test: + cd Test ; $(MAKE) check + # ========== DEPENDENCIES FOR CLEANUP ========== @CLEAN_MK@ diff --git a/Test/Makefile.in b/Test/Makefile.in index d7ce57b8a..9fab0b2cf 100644 --- a/Test/Makefile.in +++ b/Test/Makefile.in @@ -40,7 +40,7 @@ INSTALL = @INSTALL@ # ========== DEPENDENCIES FOR TESTING ========== -tests: +check test: for f in *.ztst; do \ ../Src/zsh ztst.zsh $$f; \ done |