Annotation of embedaddon/php/ext/posix/tests/posix_isatty.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: posix_isatty(): Basic tests
                      3: --SKIPIF--
                      4: <?php
                      5: if (!extension_loaded('posix')) die('skip - POSIX extension not loaded'); 
                      6: if (!function_exists('posix_isatty')) die('skip posix_isatty() not found');
                      7: ?>
                      8: --FILE--
                      9: <?php
                     10: 
                     11: var_dump(posix_isatty(0));
                     12: 
                     13: ?>
                     14: --EXPECTF--
                     15: bool(%s)

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