[PATCH] Re: Storable 2.0.0 fails on vendor perl on Mac OS X 10.1
[p5sagit/p5-mst-13.2.git] / ext / Storable / t / forgive.t
1 #!./perl
2
3 # $Id: forgive.t,v 1.0.1.1 2000/09/01 19:40:42 ram Exp $
4 #
5 #  Copyright (c) 1995-2000, Raphael Manfredi
6 #  
7 #  You may redistribute only under the same terms as Perl 5, as specified
8 #  in the README file that comes with the distribution.
9 #
10 # Original Author: Ulrich Pfeifer
11 # (C) Copyright 1997, Universitat Dortmund, all rights reserved.
12 #
13 # $Log: forgive.t,v $
14 # Revision 1.0.1.1  2000/09/01 19:40:42  ram
15 # Baseline for first official release.
16 #
17 # Revision 1.0  2000/09/01 19:40:41  ram
18 # Baseline for first official release.
19 #
20
21 sub BEGIN {
22     if ($ENV{PERL_CORE}){
23         chdir('t') if -d 't';
24         @INC = ('.', '../lib');
25     } else {
26         unshift @INC, 't';
27     }
28     require File::Spec;
29     if ($File::Spec::VERSION < 0.8) {
30         print "1..0 # Skip: newer File::Spec needed\n";
31         exit 0;
32     }
33     require Config; import Config;
34     if ($ENV{PERL_CORE} and $Config{'extensions'} !~ /\bStorable\b/) {
35         print "1..0 # Skip: Storable was not built\n";
36         exit 0;
37     }
38 }
39
40 use Storable qw(store retrieve);
41
42
43 print "1..8\n";
44
45 my $test = 1;
46 my $bad = ['foo', sub { 1 },  'bar'];
47 my $result;
48
49 eval {$result = store ($bad , 'store')};
50 print ((!defined $result)?"ok $test\n":"not ok $test\n"); $test++;
51 print (($@ ne '')?"ok $test\n":"not ok $test\n"); $test++;
52
53 $Storable::forgive_me=1;
54
55 my $devnull = File::Spec->devnull;
56
57 open(SAVEERR, ">&STDERR");
58 open(STDERR, ">$devnull") or 
59   ( print SAVEERR "Unable to redirect STDERR: $!\n" and exit(1) );
60
61 eval {$result = store ($bad , 'store')};
62
63 open(STDERR, ">&SAVEERR");
64
65 print ((defined $result)?"ok $test\n":"not ok $test\n"); $test++;
66 print (($@ eq '')?"ok $test\n":"not ok $test\n"); $test++;
67
68 my $ret = retrieve('store');
69 print ((defined $ret)?"ok $test\n":"not ok $test\n"); $test++;
70 print (($ret->[0] eq 'foo')?"ok $test\n":"not ok $test\n"); $test++;
71 print (($ret->[2] eq 'bar')?"ok $test\n":"not ok $test\n"); $test++;
72 print ((ref $ret->[1] eq 'SCALAR')?"ok $test\n":"not ok $test\n"); $test++;
73
74
75 END { 1 while unlink 'store' }