diff options
author | patthoyts <patthoyts@users.sourceforge.net> | 2009-06-25 22:53:41 (GMT) |
---|---|---|
committer | patthoyts <patthoyts@users.sourceforge.net> | 2009-06-25 22:53:41 (GMT) |
commit | 0d7a2b27ab8079b4426b96cfbc665534e01e89bb (patch) | |
tree | 231c60b9507ad0d36c260160ad2581f2e5bdf90c /tests | |
parent | 234eb4d7556c017fc6dee98267a56c844150ee5c (diff) | |
download | tcl-0d7a2b27ab8079b4426b96cfbc665534e01e89bb.zip tcl-0d7a2b27ab8079b4426b96cfbc665534e01e89bb.tar.gz tcl-0d7a2b27ab8079b4426b96cfbc665534e01e89bb.tar.bz2 |
Handle cleanup when all tests skipped [Bug 2812355]
Diffstat (limited to 'tests')
-rw-r--r-- | tests/http11.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/http11.test b/tests/http11.test index 0ed60c9..0cecaa1 100644 --- a/tests/http11.test +++ b/tests/http11.test @@ -648,7 +648,7 @@ test http11-4.3 "normal post request, check channel query length" -setup { # ------------------------------------------------------------------------- foreach p {create_httpd httpd_read halt_httpd meta check_crc} { - rename $p {} + if {[llength [info proc $p]]} {rename $p {}} } removeFile testdoc.html unset -nocomplain httpd_port httpd p |