mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
33 lines
803 B
PHP
33 lines
803 B
PHP
--TEST--
|
|
Test stream_isatty with redirected STDIN/STDOUT
|
|
--SKIPIF--
|
|
<?php
|
|
if (getenv("SKIP_IO_CAPTURE_TESTS")) {
|
|
die("skip I/O capture test");
|
|
}
|
|
?>
|
|
--CAPTURE_STDIO--
|
|
STDIN STDOUT
|
|
--FILE--
|
|
<?php
|
|
require __DIR__.'/stream_isatty.inc';
|
|
testToStdOut();
|
|
?>
|
|
--EXPECTF--
|
|
STDIN (constant): bool(false)
|
|
STDIN (fopen): bool(false)
|
|
STDIN (php://fd/0): bool(false)
|
|
STDOUT (constant): bool(false)
|
|
STDOUT (fopen): bool(false)
|
|
STDOUT (php://fd/1): bool(false)
|
|
STDERR (constant): bool(true)
|
|
STDERR (fopen): bool(true)
|
|
STDERR (php://fd/2): bool(true)
|
|
Not a stream:
|
|
Warning: stream_isatty() expects parameter 1 to be resource, string given in %s on line %d
|
|
bool(false)
|
|
Invalid stream (php://temp): bool(false)
|
|
Invalid stream (php://input): bool(false)
|
|
Invalid stream (php://memory): bool(false)
|
|
File stream: bool(false)
|