Commit | Line | Data |
7a6a85bf |
1 | #!./perl |
7a6a85bf |
2 | # |
3 | # Copyright (c) 1995-2000, Raphael Manfredi |
4 | # |
9e21b3d0 |
5 | # You may redistribute only under the same terms as Perl 5, as specified |
6 | # in the README file that comes with the distribution. |
7a6a85bf |
7 | # |
8 | # Original Author: Ulrich Pfeifer |
9 | # (C) Copyright 1997, Universitat Dortmund, all rights reserved. |
10 | # |
7a6a85bf |
11 | |
12 | sub BEGIN { |
0c384302 |
13 | if ($ENV{PERL_CORE}){ |
14 | chdir('t') if -d 't'; |
372cb964 |
15 | @INC = ('.', '../lib'); |
16 | } else { |
17 | unshift @INC, 't'; |
18 | } |
9f233367 |
19 | require Config; import Config; |
0c384302 |
20 | if ($ENV{PERL_CORE} and $Config{'extensions'} !~ /\bStorable\b/) { |
9f233367 |
21 | print "1..0 # Skip: Storable was not built\n"; |
22 | exit 0; |
23 | } |
7a6a85bf |
24 | } |
25 | |
26 | use Storable qw(store retrieve); |
372cb964 |
27 | |
197b90bc |
28 | # problems with 5.00404 when in an BEGIN block, so this is defined here |
29 | if (eval { require File::Spec; 1 } || $File::Spec::VERSION < 0.8) { |
30 | print "1..0 # Skip: File::Spec 0.8 needed\n"; |
31 | exit 0; |
a2307be4 |
32 | # Mention $File::Spec::VERSION again, as 5.00503's harness seems to have |
33 | # warnings on. |
34 | exit $File::Spec::VERSION; |
197b90bc |
35 | } |
7a6a85bf |
36 | |
37 | print "1..8\n"; |
38 | |
39 | my $test = 1; |
464b080a |
40 | *GLOB = *GLOB; # peacify -w |
41 | my $bad = ['foo', \*GLOB, 'bar']; |
7a6a85bf |
42 | my $result; |
43 | |
44 | eval {$result = store ($bad , 'store')}; |
45 | print ((!defined $result)?"ok $test\n":"not ok $test\n"); $test++; |
46 | print (($@ ne '')?"ok $test\n":"not ok $test\n"); $test++; |
47 | |
48 | $Storable::forgive_me=1; |
49 | |
29fc1735 |
50 | my $devnull = File::Spec->devnull; |
51 | |
7a6a85bf |
52 | open(SAVEERR, ">&STDERR"); |
f42118b2 |
53 | open(STDERR, ">$devnull") or |
7a6a85bf |
54 | ( print SAVEERR "Unable to redirect STDERR: $!\n" and exit(1) ); |
55 | |
56 | eval {$result = store ($bad , 'store')}; |
57 | |
58 | open(STDERR, ">&SAVEERR"); |
59 | |
60 | print ((defined $result)?"ok $test\n":"not ok $test\n"); $test++; |
61 | print (($@ eq '')?"ok $test\n":"not ok $test\n"); $test++; |
62 | |
63 | my $ret = retrieve('store'); |
64 | print ((defined $ret)?"ok $test\n":"not ok $test\n"); $test++; |
65 | print (($ret->[0] eq 'foo')?"ok $test\n":"not ok $test\n"); $test++; |
66 | print (($ret->[2] eq 'bar')?"ok $test\n":"not ok $test\n"); $test++; |
67 | print ((ref $ret->[1] eq 'SCALAR')?"ok $test\n":"not ok $test\n"); $test++; |
68 | |
69 | |
29fc1735 |
70 | END { 1 while unlink 'store' } |