From 71e1d37938159193cbfafc6139870ea54b2e8535 Mon Sep 17 00:00:00 2001 From: "Christoph M. Becker" Date: Wed, 1 Apr 2020 19:20:35 +0200 Subject: [PATCH] Enable error diagnostic for check_default_conf_path.phpt Otherwise we have no clue why the test failed, if the regex didn't match. --- ext/openssl/tests/check_default_conf_path.phpt | 2 ++ 1 file changed, 2 insertions(+) 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-- -- 2.40.0