diff options
author | andreas_kupries <akupries@shaw.ca> | 2001-09-11 17:30:44 (GMT) |
---|---|---|
committer | andreas_kupries <akupries@shaw.ca> | 2001-09-11 17:30:44 (GMT) |
commit | 264a53b95e0724905142d10910aca420f6aa82da (patch) | |
tree | 3aa5eb1cf77caaafbe55ca0ec23b1e0b901f8520 /tests/all.tcl | |
parent | 35f80ef0b54395ebe7556da6c8b96d12c04d7b47 (diff) | |
download | tcl-264a53b95e0724905142d10910aca420f6aa82da.zip tcl-264a53b95e0724905142d10910aca420f6aa82da.tar.gz tcl-264a53b95e0724905142d10910aca420f6aa82da.tar.bz2 |
* The changes below are a fix for [219253].
* tests/socket.test: Removed _most_ instances of hardwired port
numbers for listening sockets. Remaining are the ports in all
tests with constraint 'doTestsWithRemoteServer'. These seem to
be designed for a more controlled environment and are usually
skipped when running the testsuite.
* tests/io.test: Removed all instances of hardwired port numbers
for listening sockets.
Diffstat (limited to 'tests/all.tcl')
-rw-r--r-- | tests/all.tcl | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/all.tcl b/tests/all.tcl index 7918117..628710e 100644 --- a/tests/all.tcl +++ b/tests/all.tcl @@ -8,11 +8,15 @@ # Copyright (c) 2000 by Ajuba Solutions # All rights reserved. # -# RCS: @(#) $Id: all.tcl,v 1.12 2000/10/24 22:30:35 jenn Exp $ +# RCS: @(#) $Id: all.tcl,v 1.13 2001/09/11 17:30:44 andreas_kupries Exp $ set tcltestVersion [package require tcltest] namespace import -force tcltest::* +tcltest::singleProcess 1 +tcltest::matchFiles socket.test +tcltest::verbose {pass start} + tcltest::testsDirectory [file dir [info script]] tcltest::runAllTests |