diff options
Diffstat (limited to 'sapi/cli/tests/bug68291.phpt')
-rw-r--r-- | sapi/cli/tests/bug68291.phpt | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/sapi/cli/tests/bug68291.phpt b/sapi/cli/tests/bug68291.phpt index 62042307c5..1082194f5f 100644 --- a/sapi/cli/tests/bug68291.phpt +++ b/sapi/cli/tests/bug68291.phpt @@ -9,13 +9,10 @@ include "skipif.inc"; --FILE-- <?php include "php_cli_server.inc"; -file_put_contents(__DIR__ . '/bug68291+test.html', 'Found'); -php_cli_server_start(NULL, NULL); +$docRoot = php_cli_server_start(NULL, NULL)->docRoot; +file_put_contents($docRoot . '/bug68291+test.html', 'Found'); echo file_get_contents('http://' . PHP_CLI_SERVER_ADDRESS . '/bug68291+test.html'); -?> ---CLEAN-- -<?php -@unlink(__DIR__ . '/bug68291+test.html'); +@unlink($docRoot . '/bug68291+test.html'); ?> --EXPECT-- Found |