From: Jakub Zelenka Date: Wed, 8 Mar 2017 19:49:39 +0000 (+0000) Subject: Speed up test for bug72333 X-Git-Tag: php-7.0.18RC1~25^2~3 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f0e67d1a56d03383067ce04d9109dc9c83b37e03;p=php Speed up test for bug72333 It reliably fails without the xp_ssl.c so it is good with smaller usleep --- diff --git a/ext/openssl/tests/bug72333.phpt b/ext/openssl/tests/bug72333.phpt index ab2b60791c..466157b1a3 100644 --- a/ext/openssl/tests/bug72333.phpt +++ b/ext/openssl/tests/bug72333.phpt @@ -17,7 +17,7 @@ $serverCode = <<<'CODE' for ($i = 0; $i < 5; $i++) { fread($conn, 100000); - usleep(200000); + usleep(20000); } CODE;