From 9fb0e6ffe29cc37b6b84a093d7438f0453cc1c41 Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Thu, 22 Jun 2017 01:41:59 +0300 Subject: [PATCH] Fixed SKIP code --- ext/standard/tests/file/bug69442.phpt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/standard/tests/file/bug69442.phpt b/ext/standard/tests/file/bug69442.phpt index e5255acb37..655eab306c 100644 --- a/ext/standard/tests/file/bug69442.phpt +++ b/ext/standard/tests/file/bug69442.phpt @@ -13,7 +13,7 @@ EOC; $tmpFile = tempnam(sys_get_temp_dir(), "bug69442"); file_put_contents($tmpFile, $code); - exec($_SERVER['TEST_PHP_EXECUTABLE']." ".$tmpFile." 2>&1", $output); + exec($_SERVER['TEST_PHP_EXECUTABLE']." -d display_errors=1 -d error_reporting=E_ALL ".$tmpFile." 2>&1", $output); $output = join("\n", $output); unlink($tmpFile); -- 2.40.0