diff options
Diffstat (limited to 'sapi/cgi/tests/005-win32.phpt')
-rw-r--r-- | sapi/cgi/tests/005-win32.phpt | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/sapi/cgi/tests/005-win32.phpt b/sapi/cgi/tests/005-win32.phpt new file mode 100644 index 0000000000..b7efb9b500 --- /dev/null +++ b/sapi/cgi/tests/005-win32.phpt @@ -0,0 +1,34 @@ +--TEST-- +using invalid combinations of cmdline options +--SKIPIF-- +<?php + +if (substr(PHP_OS, 0, 3) != 'WIN') { + die ("skip Windows only"); +} + +include "skipif.inc"; +?> +--FILE-- +<?php + +include "include.inc"; + +$php = get_cgi_path(); +reset_env_vars(); + +var_dump(`$php -n -a -f "wrong"`); +var_dump(`$php -n -f "wrong" -a`); + +echo "Done\n"; +?> +--EXPECTF-- +string(51) "Interactive mode enabled + +No input file specified. +" +string(51) "Interactive mode enabled + +No input file specified. +" +Done |