1--TEST--
2Test function posix_setuid() by calling it with its expected arguments
3--CREDITS--
4Marco Fabbri mrfabbri@gmail.com
5Francesco Fullone ff@ideato.it
6#PHPTestFest Cesena Italia on 2009-06-20
7--EXTENSIONS--
8posix
9--FILE--
10<?php
11
12$myuid = posix_getuid();
13$uid = var_dump(posix_setuid( $myuid ) );
14
15?>
16--EXPECT--
17bool(true)
18