1--TEST--
2Test if socket_set_block throws E_WARNING with wrong parameters.
3--SKIPIF--
4<?php
5if (!extension_loaded('sockets')) {
6    die('SKIP The sockets extension is not loaded.');
7}
8?>
9--FILE--
10<?php
11socket_set_block(array());
12?>
13--EXPECTF--
14Warning: socket_set_block() expects parameter 1 to be resource, array given in %s on line %d
15--CREDITS--
16Robin Mehner, robin@coding-robin.de
17PHP Testfest Berlin 2009-05-09
18
19