Test Failure Report for ext/opcache/tests/issue0149.phpt ('ISSUE #149 (Phar mount points not working this OPcache enabled)')
Script
1:
<?php 2: $stub = "<?php header('Content-Type: text/plain;'); 3: Phar::mount('this.file', '". __FILE__ . "'); 4: echo 'OK\n'; 5: __HALT_COMPILER(); ?>"; 6: $p = new Phar(__DIR__ . '/issue0149.phar.php', 0, 'this'); 7: $p['index.php'] = ""; # A Phar must have at least one file, hence this dummy 8: $p->setStub($stub); 9: unset($p); 10: 11: include "php_cli_server.inc"; 12: php_cli_server_start('-d opcache.enable=1 -d opcache.enable_cli=1 -d extension=phar.'.PHP_SHLIB_SUFFIX); 13: echo file_get_contents('http://' . PHP_CLI_SERVER_ADDRESS . '/issue0149.phar.php'); 14: echo file_get_contents('http://' . PHP_CLI_SERVER_ADDRESS . '/issue0149.phar.php'); 15: echo file_get_contents('http://' . PHP_CLI_SERVER_ADDRESS . '/issue0149.phar.php'); 16: ?> 17:
Expected
OK
OK
OK
Output
Unable to connect to server
Diff
001+ Unable to connect to server
001- OK
002- OK
003- OK
Generated at Tue, 12 Feb 2019 16:11:15 +0000 (4 days ago)
|