This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Add test for File::stat.
[perl5.git] / t / lib / st-lock.t
1 #!./perl
2
3 # $Id: lock.t,v 1.0.1.4 2001/01/03 09:41:00 ram Exp $
4 #
5 #  @COPYRIGHT@
6 #
7 # $Log: lock.t,v $
8 # Revision 1.0.1.4  2001/01/03 09:41:00  ram
9 # patch7: use new CAN_FLOCK routine to determine whether to run tests
10 #
11 # Revision 1.0.1.3  2000/10/26 17:11:27  ram
12 # patch5: just check $^O, there's no need for the whole Config
13 #
14 # Revision 1.0.1.2  2000/10/23 18:03:07  ram
15 # patch4: protected calls to flock() for dos platform
16 #
17 # Revision 1.0.1.1  2000/09/28 21:44:06  ram
18 # patch2: created.
19 #
20 #
21
22 sub BEGIN {
23     chdir('t') if -d 't';
24     @INC = '.'; 
25     push @INC, '../lib';
26     require Config; import Config;
27     if ($Config{'extensions'} !~ /\bStorable\b/) {
28         print "1..0 # Skip: Storable was not built\n";
29         exit 0;
30     }
31
32     require 'lib/st-dump.pl';
33 }
34
35 sub ok;
36
37 use Storable qw(lock_store lock_retrieve);
38
39 unless (&Storable::CAN_FLOCK) {
40     print "1..0 # Skip: fcntl/flock emulation broken on this platform\n";
41         exit 0;
42 }
43
44 print "1..5\n";
45
46 @a = ('first', undef, 3, -4, -3.14159, 456, 4.5);
47
48 #
49 # We're just ensuring things work, we're not validating locking.
50 #
51
52 ok 1, defined lock_store(\@a, 'store');
53 ok 2, $dumped = &dump(\@a);
54
55 $root = lock_retrieve('store');
56 ok 3, ref $root eq 'ARRAY';
57 ok 4, @a == @$root;
58 ok 5, &dump($root) eq $dumped; 
59
60 unlink 't/store';
61