summaryrefslogtreecommitdiffstats
path: root/generic/tclTest.c
diff options
context:
space:
mode:
authornijtmans <nijtmans@noemail.net>2010-03-06 06:29:24 (GMT)
committernijtmans <nijtmans@noemail.net>2010-03-06 06:29:24 (GMT)
commitb116d94f3a9f60b0b88175257e064bade9115555 (patch)
tree7e13c1fef5504409271dd09f6be709763c1f7e21 /generic/tclTest.c
parent93885574d9fbe1cb03ee651312b936ebbdef7a7c (diff)
downloadtcl-b116d94f3a9f60b0b88175257e064bade9115555.zip
tcl-b116d94f3a9f60b0b88175257e064bade9115555.tar.gz
tcl-b116d94f3a9f60b0b88175257e064bade9115555.tar.bz2
remove presence of tclTomMathStubsPtr in tclStubLib.c
test that tommath stubs are present in stub library FossilOrigin-Name: 04bac2f3470807c3d89873e7a83fd9649d13a739
Diffstat (limited to 'generic/tclTest.c')
-rw-r--r--generic/tclTest.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/generic/tclTest.c b/generic/tclTest.c
index 5b035fe..35bff84 100644
--- a/generic/tclTest.c
+++ b/generic/tclTest.c
@@ -14,7 +14,7 @@
* 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.147 2010/02/25 22:20:10 nijtmans Exp $
+ * RCS: @(#) $Id: tclTest.c,v 1.148 2010/03/06 06:29:24 nijtmans Exp $
*/
#undef STATIC_BUILD
@@ -539,7 +539,10 @@ Tcltest_Init(
"-appinitprocclosestderr", "-appinitprocsetrcfile", NULL
};
- if (Tcl_InitStubs(interp, "8.1", 0) == NULL) {
+ if (Tcl_InitStubs(interp, "8.5", 0) == NULL) {
+ return TCL_ERROR;
+ }
+ if (Tcl_TomMath_InitStubs(interp, "8.5") == NULL) {
return TCL_ERROR;
}
/* TIP #268: Full patchlevel instead of just major.minor */