--TEST-- Check for eio_*stat functions' error behaviour --FILE-- 0) { eio_fstat($result, EIO_PRI_DEFAULT, "my_res_cb", "eio_fstat"); eio_event_loop(); eio_close($result); eio_event_loop(); } else { var_dump($result); } } eio_stat($tmp_filename, EIO_PRI_DEFAULT, "my_res_cb", "eio_stat"); eio_lstat($tmp_filename, EIO_PRI_DEFAULT, "my_res_cb", "eio_lstat"); eio_event_loop(); eio_open($tmp_filename, EIO_O_RDONLY, 0, EIO_PRI_DEFAULT, "my_open_cb", "eio_open"); eio_event_loop(); @unlink($tmp_filename); eio_stat($tmp_filename, EIO_PRI_DEFAULT, "my_res_cb", "eio_stat"); eio_lstat($tmp_filename, EIO_PRI_DEFAULT, "my_res_cb", "eio_lstat"); eio_event_loop(); ?> --EXPECTF-- string(%d) "eio_%stat" int(%d) string(%d) "eio_%stat" int(%d) string(%d) "eio_%stat" int(%d) string(%d) "eio_%stat" int(-1) string(%d) "eio_%stat" int(-1)