summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpatthoyts <patthoyts@users.sourceforge.net>2009-06-24 13:13:48 (GMT)
committerpatthoyts <patthoyts@users.sourceforge.net>2009-06-24 13:13:48 (GMT)
commitc850bb8798a952623336cca73d9196af1454db02 (patch)
tree1ee4bb69cd255d05339f9c4cfcb3b8a3f7aac2db
parentb1c6f1ed60dd86412f73409643e28320283c8cc6 (diff)
downloadtcl-c850bb8798a952623336cca73d9196af1454db02.zip
tcl-c850bb8798a952623336cca73d9196af1454db02.tar.gz
tcl-c850bb8798a952623336cca73d9196af1454db02.tar.bz2
Clean up procs after testing to avoid problems with -singleproc testing [Bug 2811492]
-rw-r--r--ChangeLog4
-rw-r--r--tests/http11.test6
2 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 5f2223d..87e210e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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