Annotation of embedaddon/php/sapi/cgi/tests/007.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: invalid arguments and error messages
                      3: --SKIPIF--
                      4: <?php include "skipif.inc"; ?>
                      5: --FILE--
                      6: <?php
                      7: include "include.inc";
                      8: 
                      9: $php = get_cgi_path();
                     10: reset_env_vars();
                     11: 
                     12: var_dump(`"$php" -n -f some.php -f some.php`);
                     13: var_dump(`"$php" -n -s -w -l`);
                     14: 
                     15: ?>
                     16: ===DONE===
                     17: --EXPECTF--    
                     18: string(25) "No input file specified.
                     19: "
                     20: string(31) "No syntax errors detected in -
                     21: "
                     22: ===DONE===

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>