diff options
author | nijtmans <nijtmans> | 2009-11-19 21:17:36 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2009-11-19 21:17:36 (GMT) |
commit | 1aaac758c94c12834f8bf77eadc30e212bc186f4 (patch) | |
tree | 17c64145a2321c7f3db5dff18b0042d1a861aa75 /generic/tclTest.c | |
parent | 9d243a7d2ffa0988a6dc1316cecf69e776b75bae (diff) | |
download | tcl-1aaac758c94c12834f8bf77eadc30e212bc186f4.zip tcl-1aaac758c94c12834f8bf77eadc30e212bc186f4.tar.gz tcl-1aaac758c94c12834f8bf77eadc30e212bc186f4.tar.bz2 |
Test-case for fixed [Bug 2849797]
Fix safe-10.1 and safe-10.4 test cases,
making the wrong assumption that Tcltest
should be a static package.
Diffstat (limited to 'generic/tclTest.c')
-rw-r--r-- | generic/tclTest.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/generic/tclTest.c b/generic/tclTest.c index ca0d507..4e739db 100644 --- a/generic/tclTest.c +++ b/generic/tclTest.c @@ -14,13 +14,12 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclTest.c,v 1.139 2009/11/18 23:46:05 nijtmans Exp $ + * RCS: @(#) $Id: tclTest.c,v 1.140 2009/11/19 21:17:36 nijtmans Exp $ */ #ifndef USE_TCL_STUBS # define USE_TCL_STUBS #endif -#define TCL_TEST #include "tclInt.h" /* @@ -153,7 +152,6 @@ static TestChannel *firstDetached; * Forward declarations for procedures defined later in this file: */ -int Tcltest_Init(Tcl_Interp *interp); static int AsyncHandlerProc(ClientData clientData, Tcl_Interp *interp, int code); #ifdef TCL_THREADS |