1--TEST--
2Test function posix_errno() by calling it with its expected arguments
3--CREDITS--
4Morten Amundsen mor10am@gmail.com
5Francesco Fullone ff@ideato.it
6#PHPTestFest Cesena Italia on 2009-06-20
7--SKIPIF--
8<?php
9        if(!extension_loaded("posix")) print "skip - POSIX extension not loaded";
10?>
11--FILE--
12<?php
13
14echo "*** Test by calling method or function with its expected arguments ***\n";
15
16// test without any error
17var_dump(posix_errno());
18
19?>
20--EXPECTF--
21*** Test by calling method or function with its expected arguments ***
22int(0)
23