summaryrefslogtreecommitdiff
path: root/test/it_url.testserver.php
diff options
context:
space:
mode:
authorNathan Gass2023-02-27 17:38:34 +0100
committerNathan Gass2023-02-27 17:38:34 +0100
commit17c700e501bd0c78efd0a8784993b9d0e1238f33 (patch)
treeb31063645faf173101a9a7e156289976b3b8a999 /test/it_url.testserver.php
parent39d2607aa5c46fbdd78fd2204157be5032220b84 (diff)
downloaditools-17c700e501bd0c78efd0a8784993b9d0e1238f33.tar.gz
itools-17c700e501bd0c78efd0a8784993b9d0e1238f33.tar.bz2
itools-17c700e501bd0c78efd0a8784993b9d0e1238f33.zip
make sure the output before the sleep is actually send
Diffstat (limited to 'test/it_url.testserver.php')
-rw-r--r--test/it_url.testserver.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/it_url.testserver.php b/test/it_url.testserver.php
index 9f5f91c..242ccf6 100644
--- a/test/it_url.testserver.php
+++ b/test/it_url.testserver.php
@@ -42,7 +42,8 @@ switch ($_SERVER['PHP_SELF'])
break;
case "/long_sleep":
- echo 'a';
+ echo "a\n";
+ flush();
sleep(6);
echo 'Testserver output after long sleep';
break;