diff options
author | hobbs <hobbs> | 2000-09-29 21:43:31 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2000-09-29 21:43:31 (GMT) |
commit | 4d2a64753ddf42181809e9c78642b9f3e04bbe95 (patch) | |
tree | a78258e36810d32634801e70e73f29882249a813 | |
parent | 8005d246ab941564f32c4a93c3c73eb1a13e3269 (diff) | |
download | tcl-4d2a64753ddf42181809e9c78642b9f3e04bbe95.zip tcl-4d2a64753ddf42181809e9c78642b9f3e04bbe95.tar.gz tcl-4d2a64753ddf42181809e9c78642b9f3e04bbe95.tar.bz2 |
* win/Makefile.in: commented use of TESTFLAGS
* unix/Makefile.in: added TESTFLAGS to test target to
conform with Windows makefile and TEA style.
-rw-r--r-- | ChangeLog | 25 | ||||
-rw-r--r-- | unix/Makefile.in | 7 | ||||
-rw-r--r-- | win/Makefile.in | 6 |
3 files changed, 35 insertions, 3 deletions
@@ -1,3 +1,28 @@ +2000-09-29 Jeff Hobbs <hobbs@scriptics.com> + + * win/Makefile.in: commented use of TESTFLAGS + * unix/Makefile.in: added TESTFLAGS to test target to + conform with Windows makefile and TEA style. + + * tests/stack.test: prevented possible crash on systems with low + default stacksize (Tru64, AIX) in infinite recursion test. A + solution to check remaining stack space in the core is best, but + hard to do in a cross-platform manner. + + * generic/tclIOGT.c (FLUSH_DELAY): renamed DELAY define to + FLUSH_DELAY to avoid defn conflict using Tru64's cc. + +2000-09-28 Jeff Hobbs <hobbs@ajubasolutions.com> + + * tools/tcl.wse.in: added tclPlatDecls.h and tkPlatDecls.h to the + Windows .exe install. + + * tests/fCmd.test (fCmd-6.20): corrected test to remove + c:/tcl8975@ after creating it. + + * tests/fileName.test: cleaned up the testing of glob patterns for + c:/globTest (Windows) to directly create/remove directory. + 2000-09-27 Jeff Hobbs <hobbs@ajubasolutions.com> * generic/tcl.decls: diff --git a/unix/Makefile.in b/unix/Makefile.in index 88113fd..381a233 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -5,7 +5,7 @@ # "autoconf" program (constructs like "@foo@" will get replaced in the # actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.68 2000/09/28 06:35:40 hobbs Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.69 2000/09/29 21:43:32 hobbs Exp $ VERSION = @TCL_VERSION@ @@ -440,13 +440,16 @@ tcltest: ${TCLTEST_OBJS} ${TCL_LIB_FILE} ${BUILD_DLTEST} # Note, in the target below TCL_LIBRARY needs to be set or else # "make test" won't work in the case where the compilation directory # isn't the same as the source directory. +# Specifying TESTFLAGS on the command line is the standard way to pass +# args to tcltest, ie: +# % make test TESTFLAGS="-verbose bps -file fileName.test" test: tcltest LD_LIBRARY_PATH=`pwd`:${LD_LIBRARY_PATH}; export LD_LIBRARY_PATH; \ LIBPATH=`pwd`:${LIBPATH}; export LIBPATH; \ SHLIB_PATH=`pwd`:${SHLIB_PATH}; export SHLIB_PATH; \ TCL_LIBRARY="${TCL_BUILDTIME_LIBRARY}"; export TCL_LIBRARY; \ - ./tcltest $(TOP_DIR)/tests/all.tcl $(TCLTESTARGS) + ./tcltest $(TOP_DIR)/tests/all.tcl $(TESTFLAGS) $(TCLTESTARGS) # Useful target to launch a built tcltest with the proper path,... runtest: tcltest diff --git a/win/Makefile.in b/win/Makefile.in index d28ffd9..107e14b 100644 --- a/win/Makefile.in +++ b/win/Makefile.in @@ -5,7 +5,7 @@ # "autoconf" program (constructs like "@foo@" will get replaced in the # actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.39 2000/09/28 06:36:27 hobbs Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.40 2000/09/29 21:43:32 hobbs Exp $ VERSION = @TCL_VERSION@ @@ -512,6 +512,10 @@ install-libraries: install-doc: +# Specifying TESTFLAGS on the command line is the standard way to pass +# args to tcltest, ie: +# % make test TESTFLAGS="-verbose bps -file fileName.test" + test: binaries $(TCLTEST) TCL_LIBRARY="$(LIBRARY_DIR)"; export TCL_LIBRARY; \ ./$(TCLTEST) "$(ROOT_DIR_NATIVE)/tests/all.tcl" $(TESTFLAGS) \ |