Files
php-src/sapi/cli/tests/021.phpt
Niels Dossche dcc3255b18 Fix GH-10489: run-tests.php does not escape path when building cmd (#10560)
Multiple tests had to be changed to escape the arguments in shell
commands. Some tests are skipped because they behave differently with
spaces in the path versus without. One notable example of this is the
hashbang test which does not work because spaces in hashbangs paths are
not supported in Linux.

Co-authored-by: Michael Voříšek <mvorisek@mvorisek.cz>
2023-02-25 14:02:06 +00:00

48 lines
814 B
PHP

--TEST--
CLI shell shebang
--SKIPIF--
<?php
include 'skipif.inc';
if (substr(PHP_OS, 0, 3) == 'WIN') {
die ("skip not for Windows");
}
if (str_contains(getenv('TEST_PHP_EXECUTABLE'), " ")) {
die("skip shebang cannot have spaces in its path");
}
if (strlen("#!".getenv('TEST_PHP_EXECUTABLE')) > 127) {
die ("skip shebang is too long, see http://www.in-ulm.de/~mascheck/various/shebang/#results");
}
?>
--FILE--
<?php
$php = getenv('TEST_PHP_EXECUTABLE');
$filename = __DIR__.'/021.tmp.php';
$script = "#!$php -n\n".
"ola\n".
"<?php echo 1+1,'\n';\n".
"?>\n".
"adeus\n";
file_put_contents($filename, $script);
chmod($filename, 0777);
echo `$filename`;
echo "\nDone\n";
?>
--CLEAN--
<?php
unlink(__DIR__.'/021.tmp.php');
?>
--EXPECT--
ola
2
adeus
Done