Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

towards making "make check" work on cygwin



Was testing some code under cygiwn and ran "make check".  Have the old
Microsoft wants ".exe" extension problem.
Yes, windows is a pain. Here's a patch at least get started towards
allowing testing to get started.

There are other places where Src/zsh is mentioned, so probably what
needs to happen is something should set an EXEEXT variable that is
used in the other testing script.
retrieving revision 1.11
diff -u -r1.11 Makefile.in
--- Test/Makefile.in	1 Feb 2008 11:31:38 -0000	1.11
+++ Test/Makefile.in	17 Oct 2008 03:39:08 -0000
@@ -48,8 +48,8 @@
 	if ZTST_testlist="`for f in $(sdir)/$(TESTNUM)*.ztst; \
            do echo $$f; done`" \
 	 ZTST_srcdir="$(sdir)" \
-	 ZTST_exe=$(dir_top)/Src/zsh \
-	 $(dir_top)/Src/zsh +Z -f $(sdir)/runtests.zsh; then \
+	 ZTST_exe=$(dir_top)/Src/zsh@EXEEXT@ \
+	 $(dir_top)/Src/zsh@EXEEXT@ +Z -f $(sdir)/runtests.zsh; then \
 	 stat=0; \
 	else \
 	 stat=1; \
cvs diff: Diffing Util


Messages sorted by: Reverse Date, Date, Thread, Author