summaryrefslogtreecommitdiff
path: root/ext/sockets/tests/socket_listen-wrongparams.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/sockets/tests/socket_listen-wrongparams.phpt')
-rw-r--r--ext/sockets/tests/socket_listen-wrongparams.phpt4
1 files changed, 0 insertions, 4 deletions
diff --git a/ext/sockets/tests/socket_listen-wrongparams.phpt b/ext/sockets/tests/socket_listen-wrongparams.phpt
index 41d7ac1f10..b5715a5ff5 100644
--- a/ext/sockets/tests/socket_listen-wrongparams.phpt
+++ b/ext/sockets/tests/socket_listen-wrongparams.phpt
@@ -10,13 +10,9 @@ if (!extension_loaded('sockets')) {
}
--FILE--
<?php
-var_dump(socket_listen(null));
$socket = socket_create(AF_UNIX, SOCK_STREAM, 0);
var_dump(socket_listen($socket));
--EXPECTF--
-Warning: socket_listen() expects parameter 1 to be resource, null given in %s on line %d
-NULL
-
Warning: socket_listen(): unable to listen on socket [%d]: Invalid argument in %s on line %d
bool(false)
--CREDITS--