diff options
author | dgp <dgp@users.sourceforge.net> | 2011-09-19 15:26:24 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2011-09-19 15:26:24 (GMT) |
commit | 12b5a6914cc9a4c32cdcd7090cc77ddff8788e66 (patch) | |
tree | e91f2e8f8427917f28cc952585d0118d448a7010 /unix/Makefile.in | |
parent | bd3d162f011f2a5728eaffba2ad513bf15d6d3e6 (diff) | |
download | tcl-12b5a6914cc9a4c32cdcd7090cc77ddff8788e66.zip tcl-12b5a6914cc9a4c32cdcd7090cc77ddff8788e66.tar.gz tcl-12b5a6914cc9a4c32cdcd7090cc77ddff8788e66.tar.bz2 |
Constrain test iocmd.tf-32.1 to be skipped during valgrinding. It contains a
iocmd_leaks
memory leak that cannot be plugged while testing what the test aims to test.
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r-- | unix/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index b3507ba..5014ccb 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -738,7 +738,7 @@ gdb: ${TCL_EXE} $(SHELL_ENV) $(GDB) ./${TCL_EXE} valgrind: ${TCL_EXE} ${TCLTEST_EXE} - $(SHELL_ENV) $(VALGRIND) $(VALGRINDARGS) ./${TCLTEST_EXE} $(TOP_DIR)/tests/all.tcl -singleproc 1 $(TESTFLAGS) + $(SHELL_ENV) $(VALGRIND) $(VALGRINDARGS) ./${TCLTEST_EXE} $(TOP_DIR)/tests/all.tcl -singleproc 1 -constraints valgrind $(TESTFLAGS) valgrindshell: ${TCL_EXE} $(SHELL_ENV) $(VALGRIND) $(VALGRINDARGS) ./${TCL_EXE} $(SCRIPT) |