blob: cab48125b0de38a17c1ff09e0fd11cdbbbe8963d (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
#!/usr/bin/perl
#
# Check flock() feature
#
# This isn't a real test; it just checks to make sure we can call the method.
# It doesn't even check to make sure that the default behavior
# (LOCK_EX) is occurring. This is because I don't know how to write a good
# portable test for flocking. I checked the Perl core distribution,
# and found that Perl doesn't test flock either!
BEGIN {
eval { flock STDOUT, 0 };
if ($@ && $@ =~ /unimplemented/) {
print "1..0\n";
exit;
}
}
use Fcntl ':flock'; # This works at least back to 5.004_04
my $file = "tf$$.txt";
my ($o, $n);
my @a;
print "1..4\n";
my $N = 1;
use Tie::File;
print "ok $N\n"; $N++;
# 2-4 Who the heck knows?
open F, "> $file" or die $!;
close F;
$o = tie @a, 'Tie::File', $file, recsep => 'blah';
print $o ? "ok $N\n" : "not ok $N\n";
$N++;
print $o->flock() ? "ok $N\n" : "not ok $N\n";
$N++;
print $o->flock(LOCK_UN) ? "ok $N\n" : "not ok $N\n";
$N++;
END {
undef $o;
untie @a;
1 while unlink $file;
}
|