summaryrefslogtreecommitdiff
path: root/tcl/tests/httpd
diff options
context:
space:
mode:
Diffstat (limited to 'tcl/tests/httpd')
-rw-r--r--tcl/tests/httpd3
1 files changed, 3 insertions, 0 deletions
diff --git a/tcl/tests/httpd b/tcl/tests/httpd
index e5fa282ec12..fa553d6347a 100644
--- a/tcl/tests/httpd
+++ b/tcl/tests/httpd
@@ -183,6 +183,9 @@ proc httpdRespond { sock } {
append html "<h2>Query</h2>\n<dl>\n"
foreach {key value} [split $data(query) &=] {
append html "<dt>$key<dd>$value\n"
+ if {$key == "timeout"} {
+ after $value ;# pause
+ }
}
append html </dl>\n
}