From 7ef559ff8038807156b01408bd215af7983adc5d Mon Sep 17 00:00:00 2001 From: Remi Collet <remi@php.net> Date: Thu, 20 Nov 2014 14:45:17 +0100 Subject: [PATCH] run a few request in this test --- sapi/fpm/tests/015.phpt | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/sapi/fpm/tests/015.phpt b/sapi/fpm/tests/015.phpt index 00e8bf3f5f..6390037eaf 100644 --- a/sapi/fpm/tests/015.phpt +++ b/sapi/fpm/tests/015.phpt @@ -36,6 +36,13 @@ if (is_resource($fpm)) { echo "Started\n"; fclose($fp); } + for ($i=0 ; $i<10 ; $i++) { + try { + run_request('127.0.0.1', $port); + } catch (Exception $e) { + echo "Error\n"; + } + } proc_terminate($fpm); if (!feof($tail)) { echo stream_get_contents($tail); -- 2.40.0