diff --git a/ext/dl_test/tests/skip.inc b/ext/dl_test/tests/skip.inc index 1149c235d52..5b1f0f3d009 100644 --- a/ext/dl_test/tests/skip.inc +++ b/ext/dl_test/tests/skip.inc @@ -14,5 +14,5 @@ if (!file_exists($path)) { } if (getenv('SKIP_ASAN')) { - die('xleak dl() crashes LSan'); + die('skip dl() crashes LSan'); } diff --git a/ext/opcache/tests/bug68104.phpt b/ext/opcache/tests/bug68104.phpt index 00c9551e974..b4b4edfd344 100644 --- a/ext/opcache/tests/bug68104.phpt +++ b/ext/opcache/tests/bug68104.phpt @@ -10,7 +10,7 @@ disable_functions=dl opcache --SKIPIF-- --FILE-- --INI-- enable_dl=0 diff --git a/ext/standard/tests/general_functions/dl-cve-2007-4887.phpt b/ext/standard/tests/general_functions/dl-cve-2007-4887.phpt index d392d41304f..d4920365574 100644 --- a/ext/standard/tests/general_functions/dl-cve-2007-4887.phpt +++ b/ext/standard/tests/general_functions/dl-cve-2007-4887.phpt @@ -6,7 +6,7 @@ $enabled_sapi = array('cgi-fcgi', 'cli', 'embed', 'fpm'); if (!in_array(php_sapi_name(), $enabled_sapi)) { die('skip dl() is not enabled for ' . php_sapi_name()); } -if (getenv('SKIP_ASAN')) die('xleak dl() crashes LSan'); +if (getenv('SKIP_ASAN')) die('skip dl() crashes LSan'); ?> --INI-- enable_dl=1 diff --git a/ext/standard/tests/general_functions/dl-full-path-not-supported.phpt b/ext/standard/tests/general_functions/dl-full-path-not-supported.phpt index 2b7ec7dc531..ac317df429b 100644 --- a/ext/standard/tests/general_functions/dl-full-path-not-supported.phpt +++ b/ext/standard/tests/general_functions/dl-full-path-not-supported.phpt @@ -9,7 +9,7 @@ $enabled_sapi = array('cgi-fcgi', 'cli', 'embed', 'fpm'); if (!in_array(php_sapi_name(), $enabled_sapi)) { die('skip dl() is not enabled for ' . php_sapi_name()); } -if (getenv('SKIP_ASAN')) die('xleak dl() crashes LSan'); +if (getenv('SKIP_ASAN')) die('skip dl() crashes LSan'); ?> --INI-- enable_dl=1