blob: 401801c7d7c2b7f9e466a6098a92ef73a54f66fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#!./perl
BEGIN {
chdir 't' if -d 't';
@INC = '../lib';
require Config; import Config;
if ($Config{'extensions'} !~ /\bFileHandle\b/) {
print "1..0\n";
exit 0;
}
}
use FileHandle;
use strict subs;
$mystdout = new_from_fd FileHandle 1,"w";
autoflush STDOUT;
autoflush $mystdout;
print "1..4\n";
print $mystdout "ok ",fileno($mystdout),"\n";
$fh = new FileHandle "TEST", O_RDONLY and print "ok 2\n";
$buffer = <$fh>;
print $buffer eq "#!./perl\n" ? "ok 3\n" : "not ok 3\n";
ungetc STDIN 65;
CORE::read(STDIN, $buf,1);
print $buf eq 'A' ? "ok 4\n" : "not ok 4\n";
|