Don't claim defeat too early.
[p5sagit/p5-mst-13.2.git] / t / op / lfs.t
CommitLineData
ea2b5ef6 1# NOTE: this file tests how large files (>2GB) work with perlio (stdio/sfio).
2# sysopen(), sysseek(), syswrite(), sysread() are tested in t/lib/syslfs.t.
3# If you modify/add tests here, remember to update also t/lib/syslfs.t.
4
817e2dcb 5BEGIN {
05f8a9f5 6 # Don't bother if there are no quads.
ea2b5ef6 7 eval { my $q = pack "q", 0 };
817e2dcb 8 if ($@) {
9 print "1..0\n# no 64-bit types\n";
48ea9154 10 exit(0);
817e2dcb 11 }
ea2b5ef6 12 chdir 't' if -d 't';
13 unshift @INC, '../lib';
9f8fdb7d 14 # Don't bother if there are no quad offsets.
15 require Config; import Config;
16 if ($Config{lseeksize} < 8) {
64215065 17 print "1..0\n# no 64-bit file offsets\n";
48ea9154 18 exit(0);
9f8fdb7d 19 }
817e2dcb 20}
21
6da84e39 22sub bye {
23 close(BIG);
24 unlink "big";
25 exit(0);
26}
27
05f8a9f5 28# Known have-nots.
817e2dcb 29if ($^O eq 'win32' || $^O eq 'vms') {
30 print "1..0\n# no sparse files\n";
6da84e39 31 bye();
32}
33
05f8a9f5 34# Then try to deduce whether we have sparse files.
35
64215065 36# Let's not depend on Fcntl or any other extension.
37
ea2b5ef6 38my ($SEEK_SET, $SEEK_CUR, $SEEK_END) = (0, 1, 2);
6da84e39 39
ea2b5ef6 40# We'll start off by creating a one megabyte file which has
05f8a9f5 41# only three "true" bytes. If we have sparseness, we should
42# consume less blocks than one megabyte (assuming nobody has
43# one megabyte blocks...)
817e2dcb 44
ea2b5ef6 45open(BIG, ">big") or do { warn "open failed: $!\n"; bye };
6da84e39 46binmode BIG;
ea2b5ef6 47seek(BIG, 1_000_000, $SEEK_SET);
6da84e39 48print BIG "big";
817e2dcb 49close(BIG);
50
51my @s;
52
53@s = stat("big");
54
ea2b5ef6 55print "# @s\n";
56
6da84e39 57unless (@s == 13 &&
ea2b5ef6 58 $s[7] == 1_000_003 &&
6da84e39 59 defined $s[11] &&
60 defined $s[12] &&
ea2b5ef6 61 $s[11] * $s[12] < 1000_003) {
62 print "1..0\n# no sparse files?\n";
6da84e39 63 bye();
817e2dcb 64}
65
66# By now we better be sure that we do have sparse files:
67# if we are not, the following will hog 5 gigabytes of disk. Ooops.
68
69print "1..8\n";
70
05f8a9f5 71my $fail = 0;
72
ea2b5ef6 73open(BIG, ">big") or do { warn "open failed: $!\n"; bye };
817e2dcb 74binmode BIG;
6da84e39 75seek(BIG, 5_000_000_000, $SEEK_SET);
817e2dcb 76print BIG "big";
77close BIG;
78
79@s = stat("big");
80
ea2b5ef6 81print "# @s\n";
82
05f8a9f5 83sub fail () {
64215065 84 print "not ";
05f8a9f5 85 $fail++;
86}
87
64215065 88fail unless $s[7] == 5_000_000_003; # exercizes pp_stat
817e2dcb 89print "ok 1\n";
90
64215065 91fail unless -s "big" == 5_000_000_003; # exercizes pp_ftsize
817e2dcb 92print "ok 2\n";
93
ea2b5ef6 94open(BIG, "big") or do { warn "open failed: $!\n"; bye };
817e2dcb 95binmode BIG;
96
6da84e39 97seek(BIG, 4_500_000_000, $SEEK_SET);
817e2dcb 98
05f8a9f5 99fail unless tell(BIG) == 4_500_000_000;
817e2dcb 100print "ok 3\n";
101
6da84e39 102seek(BIG, 1, $SEEK_CUR);
817e2dcb 103
05f8a9f5 104fail unless tell(BIG) == 4_500_000_001;
817e2dcb 105print "ok 4\n";
106
6da84e39 107seek(BIG, -1, $SEEK_CUR);
817e2dcb 108
05f8a9f5 109fail unless tell(BIG) == 4_500_000_000;
817e2dcb 110print "ok 5\n";
111
6da84e39 112seek(BIG, -3, $SEEK_END);
817e2dcb 113
05f8a9f5 114fail unless tell(BIG) == 5_000_000_000;
817e2dcb 115print "ok 6\n";
116
117my $big;
118
05f8a9f5 119fail unless read(BIG, $big, 3) == 3;
817e2dcb 120print "ok 7\n";
121
05f8a9f5 122fail unless $big eq "big";
817e2dcb 123print "ok 8\n";
124
6da84e39 125bye();
817e2dcb 126
05f8a9f5 127if ($fail) {
128 print STDERR <<EOM;
129#
130# If the lfs (large file support) tests fail, it means that
131# the *file system* you are running the tests on doesn't support
132# large files (files larger than two gigabytes). Perl may still
133# be able to support such files, once you have such a file system.
134#
135EOM
136}
137
6da84e39 138# eof