diff options
author | hobbs <hobbs> | 2000-06-02 23:44:06 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2000-06-02 23:44:06 (GMT) |
commit | a43e59c36a2e9854f4de5e42e7fb5f138de44f8f (patch) | |
tree | cbe9a9151a95e1fd1440650a5a0222ee1ab8901f | |
parent | 3187daa41730d0917ee1c0464ca3cd81287e906f (diff) | |
download | tcl-a43e59c36a2e9854f4de5e42e7fb5f138de44f8f.zip tcl-a43e59c36a2e9854f4de5e42e7fb5f138de44f8f.tar.gz tcl-a43e59c36a2e9854f4de5e42e7fb5f138de44f8f.tar.bz2 |
reduced unnecessary iterations in http-3.13
-rw-r--r-- | tests/http.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/http.test b/tests/http.test index 275b627..4549960 100644 --- a/tests/http.test +++ b/tests/http.test @@ -12,7 +12,7 @@ # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # # -# RCS: @(#) $Id: http.test,v 1.19.2.1 2000/05/31 01:28:57 sandeep Exp $ +# RCS: @(#) $Id: http.test,v 1.19.2.2 2000/06/02 23:44:07 hobbs Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -292,8 +292,8 @@ test http-3.12 {http::geturl querychannel with aborted request} {nonPortable} { test http-3.13 {http::geturl socket leak test} { set chanCount [llength [file channels]] - for {set i 0} {$i<200} {incr i} { - catch {http::geturl $badurl -timeout 10000} + for {set i 0} {$i < 3} {incr i} { + catch {http::geturl $badurl -timeout 5000} } # No extra channels should be taken |