Annotation of embedaddon/php/sapi/cli/tests/php_cli_server_003.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: Bug #55726 (Changing the working directory makes router script inaccessible)
                      3: --INI--
                      4: allow_url_fopen=1
                      5: --SKIPIF--
                      6: <?php
                      7: include "skipif.inc"; 
                      8: ?>
                      9: --FILE--
                     10: <?php
                     11: include "php_cli_server.inc";
                     12: php_cli_server_start('chdir(__DIR__); echo "okey";');
                     13: var_dump(file_get_contents("http://" . PHP_CLI_SERVER_ADDRESS));
                     14: var_dump(file_get_contents("http://" . PHP_CLI_SERVER_ADDRESS));
                     15: ?>
                     16: --EXPECTF--    
                     17: string(4) "okey"
                     18: string(4) "okey"

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>