diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2014-04-17 14:01:14 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2014-04-17 14:01:14 (GMT) |
commit | a99f768a32b42d04735d090f7d6fd8a0f75bc8ec (patch) | |
tree | 939e5411d61efb088b50c96cdd7d5b9a44953be3 /tests/http.test | |
parent | c37220bed3a6c2c42a369ca18cf216568a86b1c1 (diff) | |
download | tcl-a99f768a32b42d04735d090f7d6fd8a0f75bc8ec.zip tcl-a99f768a32b42d04735d090f7d6fd8a0f75bc8ec.tar.gz tcl-a99f768a32b42d04735d090f7d6fd8a0f75bc8ec.tar.bz2 |
Remove all win95-specific test-cases, since Windows 95 is not supported any more.
Diffstat (limited to 'tests/http.test')
-rw-r--r-- | tests/http.test | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/tests/http.test b/tests/http.test index a52cfb1..a0a26de 100644 --- a/tests/http.test +++ b/tests/http.test @@ -492,14 +492,10 @@ proc myProgress {token total current} { } set progress [list $total $current] } -if 0 { - # This test hangs on Windows95 because the client never gets EOF - set httpLog 1 - test http-4.6.1 {http::Event} knownBug { - set token [http::geturl $url -blocksize 50 -progress myProgress] - return $progress - } {111 111} -} +test http-4.6.1 {http::Event} knownBug { + set token [http::geturl $url -blocksize 50 -progress myProgress] + return $progress +} {111 111} test http-4.7 {http::Event} -body { set token [http::geturl $url -keepalive 0 -progress myProgress] return $progress |