summaryrefslogtreecommitdiffstats
path: root/tests/main.test
diff options
context:
space:
mode:
authordgp <dgp@noemail.net>2003-10-07 21:45:37 (GMT)
committerdgp <dgp@noemail.net>2003-10-07 21:45:37 (GMT)
commit0114ecaecfdb59bc74537790b9b8bd0819c5a0c9 (patch)
treeeb5a51ee14571c5cd60a902b9b10716c36126ce5 /tests/main.test
parent07017070ee49085fb3afaead14c671ac479d0973 (diff)
downloadtcl-0114ecaecfdb59bc74537790b9b8bd0819c5a0c9.zip
tcl-0114ecaecfdb59bc74537790b9b8bd0819c5a0c9.tar.gz
tcl-0114ecaecfdb59bc74537790b9b8bd0819c5a0c9.tar.bz2
* tests/cmdAH.test:
* tests/exec.test: Corrected temporary file management * tests/fileSystem.test: issues uncovered by -debug 1 test * tests/io.test: operations. Also backported some * tests/ioCmd.test: other fixes from the HEAD. * tests/main.test: * tests/pid.test: [Bugs 675605, 675655, 675659] * tests/socket.test: * tests/source.test: FossilOrigin-Name: 10252720cd40b4ab3f5a9d76314668f1fd646fc6
Diffstat (limited to 'tests/main.test')
-rw-r--r--tests/main.test8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/main.test b/tests/main.test
index 605bab8..30de5ed 100644
--- a/tests/main.test
+++ b/tests/main.test
@@ -1,6 +1,6 @@
# This file contains a collection of tests for generic/tclMain.c.
#
-# RCS: @(#) $Id: main.test,v 1.14 2003/09/05 21:52:12 dgp Exp $
+# RCS: @(#) $Id: main.test,v 1.15 2003/10/07 21:45:39 dgp Exp $
if {[catch {package require tcltest 2.0.2}]} {
puts stderr "Skipping tests in [info script]. tcltest 2.0.2 required."
@@ -145,7 +145,7 @@ namespace eval ::tcl::test::main {
stdio
} -setup {
set script [makeFile {} script]
- removeFile script
+ file delete $script
set f [open $script w]
fconfigure $f -encoding utf-8
puts $f {puts [list $argv0 $argv $tcl_interactive]}
@@ -166,7 +166,7 @@ namespace eval ::tcl::test::main {
stdio
} -setup {
set script [makeFile {} script]
- removeFile script
+ file delete $script
set f [open $script w]
fconfigure $f -encoding utf-8
puts $f {puts [list $argv0 $argv $tcl_interactive]}
@@ -187,7 +187,7 @@ namespace eval ::tcl::test::main {
stdio
} -setup {
set script [makeFile {} script]
- removeFile script
+ file delete $script
set f [open $script w]
fconfigure $f -encoding utf-8
puts $f {puts [list $argv0 $argv $tcl_interactive]}