php-src/sapi/cli/tests/009.phpt
Antony Dovgal 459564e2d2 fix tests
2006-12-04 17:48:52 +00:00

24 lines
495 B
PHP

--TEST--
using invalid combinations of cmdline options
--SKIPIF--
<?php include "skipif.inc"; ?>
--FILE--
<?php
$php = $_ENV['TEST_PHP_EXECUTABLE'];
var_dump(`$php -n -c -r 'echo hello;'`);
var_dump(`$php -n -a -r 'echo hello;'`);
var_dump(`$php -n -r 'echo hello;' -a`);
echo "Done\n";
?>
--EXPECTF--
You cannot use both -n and -c switch. Use -h for help.
NULL
Either execute direct code, process stdin or use a file.
NULL
Either execute direct code, process stdin or use a file.
NULL
Done