mirror of
https://github.com/danog/ext-uv.git
synced 2024-11-26 20:14:47 +01:00
23 lines
554 B
PHP
23 lines
554 B
PHP
--TEST--
|
|
Check poll functions with with non socket file descriptors
|
|
--FILE--
|
|
<?php
|
|
$fd = fopen('php://temp', 'r+');
|
|
stream_set_blocking($fd, 0);
|
|
$loop = uv_loop_new();
|
|
$poll = uv_poll_init($loop, $fd);
|
|
uv_poll_start($poll, UV::READABLE, function($poll, $stat, $ev, $fd) {
|
|
echo "OK";
|
|
uv_poll_stop($poll);
|
|
|
|
fclose($fd);
|
|
});
|
|
uv_run($loop);
|
|
|
|
fwrite($fd, 'hello');
|
|
|
|
--EXPECTF--
|
|
Warning: uv_poll_init(): invalid resource passed, this resource is not supported in %s on line %d
|
|
|
|
Fatal error: uv_poll_init(): uv_poll_init failed in %s on line %d
|