diff options
author | patthoyts <patthoyts@users.sourceforge.net> | 2009-06-24 13:13:48 (GMT) |
---|---|---|
committer | patthoyts <patthoyts@users.sourceforge.net> | 2009-06-24 13:13:48 (GMT) |
commit | c850bb8798a952623336cca73d9196af1454db02 (patch) | |
tree | 1ee4bb69cd255d05339f9c4cfcb3b8a3f7aac2db /tests/http11.test | |
parent | b1c6f1ed60dd86412f73409643e28320283c8cc6 (diff) | |
download | tcl-c850bb8798a952623336cca73d9196af1454db02.zip tcl-c850bb8798a952623336cca73d9196af1454db02.tar.gz tcl-c850bb8798a952623336cca73d9196af1454db02.tar.bz2 |
Clean up procs after testing to avoid problems with -singleproc testing [Bug 2811492]
Diffstat (limited to 'tests/http11.test')
-rw-r--r-- | tests/http11.test | 6 |
1 files changed, 5 insertions, 1 deletions
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 |