diff options
author | patthoyts <patthoyts@noemail.net> | 2009-06-24 13:13:48 (GMT) |
---|---|---|
committer | patthoyts <patthoyts@noemail.net> | 2009-06-24 13:13:48 (GMT) |
commit | 807a6f6f14e58d49d94e0219832c95dde282dfdc (patch) | |
tree | 1ee4bb69cd255d05339f9c4cfcb3b8a3f7aac2db /tests | |
parent | b2707605cedfbd7b7193296ebc1b7c06941f808d (diff) | |
download | tcl-807a6f6f14e58d49d94e0219832c95dde282dfdc.zip tcl-807a6f6f14e58d49d94e0219832c95dde282dfdc.tar.gz tcl-807a6f6f14e58d49d94e0219832c95dde282dfdc.tar.bz2 |
Clean up procs after testing to avoid problems with -singleproc testing [Bug 2811492]
FossilOrigin-Name: 8b30365796317b2c6f9f3bd1fb3426760f5dba23
Diffstat (limited to 'tests')
-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 |