Annotation of embedaddon/php/ext/posix/tests/posix_ttyname_variation5.phpt, revision 1.1
1.1 ! misho 1: --TEST--
! 2: Test function posix_ttyname() by substituting argument 1 with int values.
! 3: --CREDITS--
! 4: Marco Fabbri mrfabbri@gmail.com
! 5: Francesco Fullone ff@ideato.it
! 6: #PHPTestFest Cesena Italia on 2009-06-20
! 7: --SKIPIF--
! 8: <?php
! 9: if (!extension_loaded('posix')) {
! 10: die('SKIP The posix extension is not loaded.');
! 11: }
! 12: ?>
! 13: --FILE--
! 14: <?php
! 15:
! 16:
! 17: echo "*** Test substituting argument 1 with int values ***\n";
! 18:
! 19:
! 20:
! 21: $variation_array = array (
! 22: 'int 12345' => 12345,
! 23: 'int -12345' => -2345,
! 24: );
! 25:
! 26:
! 27: foreach ( $variation_array as $var ) {
! 28: var_dump(posix_ttyname( $var ) );
! 29: }
! 30: ?>
! 31: --EXPECTF--
! 32: *** Test substituting argument 1 with int values ***
! 33: bool(false)
! 34: bool(false)
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>