blob: 7634d432d0a1d9fe82d61421bca7c921d46a080e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--TEST--
Bug #71273 A wrong ext directory setup in php.ini leads to crash
--FILE--
<?php
/* NOTE this file is required to be encoded in iso-8859-1 */
$cmd = getenv('TEST_PHP_EXECUTABLE') . " -n -d html_errors=on -d extension_dir=a/é/w -d extension=php_kartoffelbrei.dll -v 2>&1";
$out = shell_exec($cmd);
var_dump(preg_match(",.+a[\\/].+[\\/]w.php_kartoffelbrei.dll.+,s", $out));
?>
--EXPECT--
int(1)
|