diff options
author | vincentdarley <vincentdarley> | 2003-02-07 11:59:43 (GMT) |
---|---|---|
committer | vincentdarley <vincentdarley> | 2003-02-07 11:59:43 (GMT) |
commit | e0cb0bc6b979e367d80f72a624325d14a50ab6eb (patch) | |
tree | e41d6766997ee6cdc7824d78ae602d9c77e1dd16 /tests/http.test | |
parent | 17cd8602bc9bd0401d641d50893a409bc660c181 (diff) | |
download | tcl-e0cb0bc6b979e367d80f72a624325d14a50ab6eb.zip tcl-e0cb0bc6b979e367d80f72a624325d14a50ab6eb.tar.gz tcl-e0cb0bc6b979e367d80f72a624325d14a50ab6eb.tar.bz2 |
fix to crashing filesystem test
Diffstat (limited to 'tests/http.test')
-rw-r--r-- | tests/http.test | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/http.test b/tests/http.test index 9d33802..b5fb26c 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.31 2002/10/03 13:34:32 dkf Exp $ +# RCS: @(#) $Id: http.test,v 1.32 2003/02/07 11:59:43 vincentdarley Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest 2 @@ -444,6 +444,8 @@ test http-4.14 {http::Event} { # Bogus host test http-4.15 {http::Event} { + # This test may fail if you use a proxy server. That is to be + # expected and is not a problem with Tcl. set code [catch { set token [http::geturl not_a_host.scriptics.com -timeout 1000 -command {#}] http::wait $token |