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 /unix/Makefile.in | |
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.
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r-- | unix/Makefile.in | 7 |
1 files changed, 5 insertions, 2 deletions
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 |