about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTanaka Akira <akr@users.sourceforge.net>1999-12-08 21:36:57 +0000
committerTanaka Akira <akr@users.sourceforge.net>1999-12-08 21:36:57 +0000
commitc26ad33472bf4eb75a070904595e050e38323253 (patch)
tree454c3517822e93b83f78a74381ec4305f1e8d0c7
parent8b59b0a78c97db1e1bf7b12f99e0cad3cd9d71d6 (diff)
downloadzsh-c26ad33472bf4eb75a070904595e050e38323253.tar.gz
zsh-c26ad33472bf4eb75a070904595e050e38323253.tar.xz
zsh-c26ad33472bf4eb75a070904595e050e38323253.zip
zsh-workers/8954
-rw-r--r--Etc/zsh-development-guide2
-rw-r--r--Makefile.in7
-rw-r--r--Test/Makefile.in2
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