Files
php-src/sapi/cli/tests/012.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

39 lines
854 B
PHP

--TEST--
invalid arguments and error messages
--SKIPIF--
<?php include "skipif.inc"; ?>
--FILE--
<?php
$php = getenv('TEST_PHP_EXECUTABLE_ESCAPED');
var_dump(`$php -n -F some.php -F some.php`);
var_dump(`$php -n -F some.php -R some.php`);
var_dump(`$php -n -R some.php -F some.php`);
var_dump(`$php -n -R some.php -R some.php`);
var_dump(`$php -n -f some.php -f some.php`);
var_dump(`$php -n -B '' -B ''`);
var_dump(`$php -n -E '' -E ''`);
var_dump(`$php -n -r '' -r ''`);
echo "Done\n";
?>
--EXPECT--
string(32) "You can use -R or -F only once.
"
string(32) "You can use -R or -F only once.
"
string(32) "You can use -R or -F only once.
"
string(32) "You can use -R or -F only once.
"
string(26) "You can use -f only once.
"
string(26) "You can use -B only once.
"
string(26) "You can use -E only once.
"
string(26) "You can use -r only once.
"
Done