1--TEST--
2Test function posix_ttyname() by substituting argument 1 with int values.
3--CREDITS--
4Marco Fabbri mrfabbri@gmail.com
5Francesco Fullone ff@ideato.it
6#PHPTestFest Cesena Italia on 2009-06-20
7--SKIPIF--
8<?php
9if (!extension_loaded('posix')) {
10    die('SKIP The posix extension is not loaded.');
11}
12?>
13--FILE--
14<?php
15
16
17echo "*** 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
27foreach ( $variation_array as $var ) {
28  var_dump(posix_ttyname( $var  ) );
29}
30?>
31--EXPECT--
32*** Test substituting argument 1 with int values ***
33bool(false)
34bool(false)
35