mirror of
https://github.com/danog/ext-uv.git
synced 2024-11-26 20:14:47 +01:00
26 lines
490 B
PHP
26 lines
490 B
PHP
--TEST--
|
|
Check for uv_tty
|
|
--SKIPIF--
|
|
<?php
|
|
if (function_exists("posix_isatty") && defined("STDIN") && !posix_isatty(STDIN)) {
|
|
die("skip test requiring a tty\n");
|
|
}
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
uv_fs_open(uv_default_loop(), "/dev/tty", UV::O_RDONLY, 0, function($r) {
|
|
$tty = uv_tty_init(uv_default_loop(), $r, 1);
|
|
uv_tty_get_winsize($tty, $width, $height);
|
|
if ($width >= 0) {
|
|
echo "OK\n";
|
|
}
|
|
if ($height >= 0) {
|
|
echo "OK\n";
|
|
}
|
|
});
|
|
|
|
uv_run();
|
|
--EXPECT--
|
|
OK
|
|
OK
|