3 # Copyright (c) 1995-2000, Raphael Manfredi
5 # You may redistribute only under the same terms as Perl 5, as specified
6 # in the README file that comes with the distribution.
8 # Original Author: Ulrich Pfeifer
9 # (C) Copyright 1997, Universitat Dortmund, all rights reserved.
15 @INC = ('.', '../lib');
19 require Config; import Config;
20 if ($ENV{PERL_CORE} and $Config{'extensions'} !~ /\bStorable\b/) {
21 print "1..0 # Skip: Storable was not built\n";
26 use Storable qw(store retrieve);
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";
32 # Mention $File::Spec::VERSION again, as 5.00503's harness seems to have
34 exit $File::Spec::VERSION;
40 *GLOB = *GLOB; # peacify -w
41 my $bad = ['foo', \*GLOB, 'bar'];
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++;
48 $Storable::forgive_me=1;
50 my $devnull = File::Spec->devnull;
52 open(SAVEERR, ">&STDERR");
53 open(STDERR, ">$devnull") or
54 ( print SAVEERR "Unable to redirect STDERR: $!\n" and exit(1) );
56 eval {$result = store ($bad , 'store')};
58 open(STDERR, ">&SAVEERR");
60 print ((defined $result)?"ok $test\n":"not ok $test\n"); $test++;
61 print (($@ eq '')?"ok $test\n":"not ok $test\n"); $test++;
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++;
70 END { 1 while unlink 'store' }