summaryrefslogtreecommitdiff
path: root/t/lib/filehand.t
blob: 8b27617568cfae6847b060f22fcb3d5b9203fa0c (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
30
#!./perl

BEGIN {
    chdir 't' if -d 't';
    @INC = '../lib';
    require Config; import Config;
    if ($Config{'extensions'} !~ /\bFileHandle\b/
        && $Config{'osname'} ne 'VMS') {
	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";