summaryrefslogtreecommitdiffstats
path: root/tests/tcltest.test
diff options
context:
space:
mode:
authorredman <redman@noemail.net>1999-07-27 01:42:21 (GMT)
committerredman <redman@noemail.net>1999-07-27 01:42:21 (GMT)
commit010e8462f65507648e57204333a18dae2f05c1a8 (patch)
tree9f2d4d9a9a9b32df258998390716ed7d9de546d0 /tests/tcltest.test
parentdff04d84d38df3be5e83e3bfcfe1b283574982d8 (diff)
downloadtcl-010e8462f65507648e57204333a18dae2f05c1a8.zip
tcl-010e8462f65507648e57204333a18dae2f05c1a8.tar.gz
tcl-010e8462f65507648e57204333a18dae2f05c1a8.tar.bz2
Bug fixes for threaded Tcl on NT with single and dual CPUs. Still some
open issues, this code is a little more stable though. FossilOrigin-Name: f4fa2a7ba1bdb443e65019bd05fcdd45b1518fd6
Diffstat (limited to 'tests/tcltest.test')
-rwxr-xr-xtests/tcltest.test5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/tcltest.test b/tests/tcltest.test
index 74c5b1b..6229d46 100755
--- a/tests/tcltest.test
+++ b/tests/tcltest.test
@@ -10,7 +10,7 @@
# Copyright (c) 1998-1999 by Scriptics Corporation.
# All rights reserved.
#
-# RCS: @(#) $Id: tcltest.test,v 1.1 1999/07/26 17:59:12 jenn Exp $
+# RCS: @(#) $Id: tcltest.test,v 1.2 1999/07/27 01:42:23 redman Exp $
if {[lsearch [namespace children] ::tcltest] == -1} {
package require tcltest
@@ -252,7 +252,8 @@ makeFile {
package require tcltest
namespace import ::tcltest::*
test makecore {make a core file} {
- open core w
+ set f [open core w]
+ close $f
} {}
::tcltest::cleanupTests
return