summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorhobbs <hobbs>2001-10-12 19:45:08 (GMT)
committerhobbs <hobbs>2001-10-12 19:45:08 (GMT)
commit61f30998eb0fccab4184bdb9b5c1676a0c882da9 (patch)
tree56a2afd342ad6e6fdcad9ce790db6303dde1fce4 /tests
parent7d4c932a5da9439a39177a370811df62501be73f (diff)
downloadtcl-61f30998eb0fccab4184bdb9b5c1676a0c882da9.zip
tcl-61f30998eb0fccab4184bdb9b5c1676a0c882da9.tar.gz
tcl-61f30998eb0fccab4184bdb9b5c1676a0c882da9.tar.bz2
(socket-7.2): corrected to work on Win2K
Diffstat (limited to 'tests')
-rw-r--r--tests/socket.test11
1 files changed, 5 insertions, 6 deletions
diff --git a/tests/socket.test b/tests/socket.test
index da8612a..80b8298 100644
--- a/tests/socket.test
+++ b/tests/socket.test
@@ -10,7 +10,7 @@
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
-# RCS: @(#) $Id: socket.test,v 1.19 2001/09/20 12:08:37 dkf Exp $
+# RCS: @(#) $Id: socket.test,v 1.20 2001/10/12 19:45:08 hobbs Exp $
# Running socket tests with a remote server:
# ------------------------------------------
@@ -837,11 +837,10 @@ test socket-7.2 {testing socket specific options} {socket stdio} {
set p [fconfigure $s -sockname]
close $s
close $f
- set l ""
- lappend l [llength $p]
- lappend l [lindex $p 0]
- lappend l [expr [lindex $p 2] == $listen]
-} {3 127.0.0.1 0}
+ list [llength $p] \
+ [regexp {^(127\.0\.0\.1|0\.0\.0\.0)$} [lindex $p 0]] \
+ [expr {[lindex $p 2] == $listen}]
+} {3 1 0}
test socket-7.3 {testing socket specific options} {socket} {
set s [socket -server accept 0]
set l [fconfigure $s]