From: Christoph M. Becker Date: Wed, 1 Apr 2020 17:20:35 +0000 (+0200) Subject: Enable error diagnostic for check_default_conf_path.phpt X-Git-Tag: php-7.4.7RC1~88 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=71e1d37938159193cbfafc6139870ea54b2e8535;p=php Enable error diagnostic for check_default_conf_path.phpt Otherwise we have no clue why the test failed, if the regex didn't match. --- diff --git a/ext/openssl/tests/check_default_conf_path.phpt b/ext/openssl/tests/check_default_conf_path.phpt index 9ce0d41cc3..f86a06d796 100644 --- a/ext/openssl/tests/check_default_conf_path.phpt +++ b/ext/openssl/tests/check_default_conf_path.phpt @@ -18,6 +18,8 @@ preg_match(",Openssl default config [^ ]* (.*),", $info, $m); if (isset($m[1])) { var_dump(str_replace('/', '\\', strtolower($m[1]))); +} else { + echo $info; } ?> --EXPECTF--