summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/httpd3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/httpd b/tests/httpd
index e5fa282..fa553d6 100644
--- a/tests/httpd
+++ b/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
}