mirror of
https://github.com/php/php-src.git
synced 2025-01-18 17:54:05 +08:00
add test for the shebang thing
This commit is contained in:
parent
4ef36bc364
commit
180a7bef35
39
sapi/cli/tests/021.phpt
Normal file
39
sapi/cli/tests/021.phpt
Normal file
@ -0,0 +1,39 @@
|
||||
--TEST--
|
||||
CLI shell shebang
|
||||
--SKIPIF--
|
||||
<?php
|
||||
include 'skipif.inc';
|
||||
if (substr(PHP_OS, 0, 3) == 'WIN') {
|
||||
die ("skip not for Windows");
|
||||
}
|
||||
?>
|
||||
--FILE--
|
||||
<?php
|
||||
|
||||
$php = getenv('TEST_PHP_EXECUTABLE');
|
||||
|
||||
$filename = __DIR__.'/021.tmp.php';
|
||||
|
||||
$script = "#!$php\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');
|
||||
?>
|
||||
--EXPECTF--
|
||||
ola
|
||||
2
|
||||
adeus
|
||||
|
||||
Done
|
Loading…
Reference in New Issue
Block a user