diff options
author | dgp <dgp@users.sourceforge.net> | 2005-07-05 20:54:56 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2005-07-05 20:54:56 (GMT) |
commit | d3e7ea574cf6464c1e423c83acafeeb797298552 (patch) | |
tree | cd6314c93517d357cd2d47e0032584753723a3e6 /unix | |
parent | 54bafc704cf48ffee9929b86352c127bfc9c024d (diff) | |
download | tcl-d3e7ea574cf6464c1e423c83acafeeb797298552.zip tcl-d3e7ea574cf6464c1e423c83acafeeb797298552.tar.gz tcl-d3e7ea574cf6464c1e423c83acafeeb797298552.tar.bz2 |
* unix/Makefile.in: Purged use of TCLTESTARGS [RFE 1161550].
Diffstat (limited to 'unix')
-rw-r--r-- | unix/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index f5d1b80..e47a89c 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.170 2005/06/04 21:06:24 hobbs Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.171 2005/07/05 20:55:07 dgp Exp $ VERSION = @TCL_VERSION@ MAJOR_VERSION = @TCL_MAJOR_VERSION@ @@ -580,7 +580,7 @@ tcltest-real: test: tcltest @LD_LIBRARY_PATH_VAR@=`pwd`:$${@LD_LIBRARY_PATH_VAR@}; export @LD_LIBRARY_PATH_VAR@; \ TCL_LIBRARY="${TCL_BUILDTIME_LIBRARY}"; export TCL_LIBRARY; \ - ./tcltest $(TOP_DIR)/tests/all.tcl $(TESTFLAGS) $(TCLTESTARGS) + ./tcltest $(TOP_DIR)/tests/all.tcl $(TESTFLAGS) # Useful target to launch a built tcltest with the proper path,... runtest: tcltest @@ -619,7 +619,7 @@ ddd: tclsh valgrind: tclsh tcltest @LD_LIBRARY_PATH_VAR@=`pwd`:$${@LD_LIBRARY_PATH_VAR@}; export @LD_LIBRARY_PATH_VAR@; \ TCL_LIBRARY="${TCL_BUILDTIME_LIBRARY}"; export TCL_LIBRARY; \ - valgrind --num-callers=8 --leak-resolution=high -v --leak-check=yes --show-reachable=yes $(VALGRINDARGS) ./tcltest $(TOP_DIR)/tests/all.tcl -singleproc 1 $(TESTFLAGS) $(TCLTESTARGS) + valgrind --num-callers=8 --leak-resolution=high -v --leak-check=yes --show-reachable=yes $(VALGRINDARGS) ./tcltest $(TOP_DIR)/tests/all.tcl -singleproc 1 $(TESTFLAGS) # The following target outputs the name of the top-level source directory # for Tcl (it is used by Tk's configure script, for example). The |