Overview
Comment: | brace TESTFLAGS in make test |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
cceaa397bcdf32a1c4f31d847137d729 |
User & Date: | hobbs2 on 2010-08-11 19:52:12 |
Other Links: | manifest | tags |
Context
2010-08-12
| ||
01:28 | minor comment fix check-in: 06085abc5c user: hobbs2 tags: trunk | |
2010-08-11
| ||
19:52 | brace TESTFLAGS in make test check-in: cceaa397bc user: hobbs2 tags: trunk | |
19:50 | * tls.c (StatusObjCmd): memleak: free peer if loaded. [Bug 3041925] check-in: 366542d9a0 user: hobbs2 tags: trunk | |
Changes
Modified Makefile.in from [8cc076f8ae] to [1a386d2509].
︙ | ︙ | |||
8 9 10 11 12 13 14 | # # Copyright (c) 1999-2000 Ajuba Solutions. # All rights reserved. # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # | | | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | # # Copyright (c) 1999-2000 Ajuba Solutions. # All rights reserved. # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # # RCS: @(#) $Id: Makefile.in,v 1.28 2010/08/11 19:52:12 hobbs2 Exp $ #======================================================================== # Enumerate the names of the source files included in this package. # This will be used when a dist target is added to the Makefile. #======================================================================== |
︙ | ︙ | |||
201 202 203 204 205 206 207 | test: binaries libraries echo "load $(PKG_LIB_FILE); \ if {![file exists tls.tcl]} { \ file copy [file join $(srcdir) tls.tcl] tls.tcl \ } ;\ source [file join $(srcdir) tls.tcl]; \ | | | 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 | test: binaries libraries echo "load $(PKG_LIB_FILE); \ if {![file exists tls.tcl]} { \ file copy [file join $(srcdir) tls.tcl] tls.tcl \ } ;\ source [file join $(srcdir) tls.tcl]; \ set argv {$(TESTFLAGS)}; \ source [file join $(srcdir) tests all.tcl]" | $(TCLSH) shell: binaries libraries @$(TCLSH) $(SCRIPT) gdb: $(TCLSH_ENV) gdb $(TCLSH_PROG) $(SCRIPT) |
︙ | ︙ |