summaryrefslogtreecommitdiffstats
path: root/unix
diff options
context:
space:
mode:
authorhobbs <hobbs>2002-11-27 02:51:41 (GMT)
committerhobbs <hobbs>2002-11-27 02:51:41 (GMT)
commita3b8e2126bece0f02ae7685d45fb8e06b9fa8b2a (patch)
tree12166326c5c9289ae38cad6f5aa55a4fca17b9de /unix
parentc31f98ba2966578b5d60d614c2ff82f1ff5da06f (diff)
downloadtcl-a3b8e2126bece0f02ae7685d45fb8e06b9fa8b2a.zip
tcl-a3b8e2126bece0f02ae7685d45fb8e06b9fa8b2a.tar.gz
tcl-a3b8e2126bece0f02ae7685d45fb8e06b9fa8b2a.tar.bz2
add simple valgrind target
Diffstat (limited to 'unix')
-rw-r--r--unix/Makefile.in7
1 files changed, 6 insertions, 1 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in
index e2310ae..a255c24 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.119 2002/10/18 22:59:54 hobbs Exp $
+# RCS: @(#) $Id: Makefile.in,v 1.120 2002/11/27 02:51:41 hobbs Exp $
VERSION = @TCL_VERSION@
MAJOR_VERSION = @TCL_MAJOR_VERSION@
@@ -535,6 +535,11 @@ ddd: tclsh
$(DDD) -command=gdb.run ./tclsh
rm gdb.run
+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)
+
# 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
# .NO_PARALLEL line is needed to avoid problems under Sun's "pmake".