summaryrefslogtreecommitdiff
path: root/ext/posix/tests/posix_strerror_error.phpt
blob: 1c3775a3238f41685f4c8dfeeab05f1ab6a9e691 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--TEST--
Test posix_strerror() function : error conditions
--SKIPIF--
<?php
	if(!extension_loaded("posix")) print "skip - POSIX extension not loaded";
?>
--FILE--
<?php
echo "*** Testing posix_strerror() : error conditions ***\n";

echo "\n-- Testing posix_strerror() function with invalid error number --\n";
$errno = -999;
echo gettype( posix_strerror($errno) )."\n";

echo "Done";
?>
--EXPECT--
*** Testing posix_strerror() : error conditions ***

-- Testing posix_strerror() function with invalid error number --
string
Done