diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | tests/http11.test | 6 |
2 files changed, 9 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2009-06-24 Pat Thoyts <patthoyts@users.sourceforge.net> + + * tests/http11.test: Clean up procs after testing. [Bug 2811492] + 2009-06-18 Donal K. Fellows <dkf@users.sf.net> * generic/tclCkalloc.c (MemoryCmd): [Bug 988703]: diff --git a/tests/http11.test b/tests/http11.test index 967e5e6..85526f5 100644 --- a/tests/http11.test +++ b/tests/http11.test @@ -647,5 +647,9 @@ test http-4.3 "normal post request, check channel query length" -setup { # ------------------------------------------------------------------------- -unset -nocomplain httpd_port +foreach p {create_httpd httpd_read halt_httpd meta check_crc} { + rename $p {} +} +unset -nocomplain httpd_port httpd p + ::tcltest::cleanupTests |