st_blocks is in 512 byte blocks.
[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
5cec1e3b 57my $BLOCKSIZE = 512; # is this really correct everywhere?
58
6da84e39 59unless (@s == 13 &&
ea2b5ef6 60 $s[7] == 1_000_003 &&
6da84e39 61 defined $s[12] &&
5cec1e3b 62 $BLOCKSIZE * $s[12] < 1_000_003) {
ea2b5ef6 63 print "1..0\n# no sparse files?\n";
6da84e39 64 bye();
817e2dcb 65}
66
67# By now we better be sure that we do have sparse files:
68# if we are not, the following will hog 5 gigabytes of disk. Ooops.
69
70print "1..8\n";
71
05f8a9f5 72my $fail = 0;
73
ea2b5ef6 74open(BIG, ">big") or do { warn "open failed: $!\n"; bye };
817e2dcb 75binmode BIG;
6da84e39 76seek(BIG, 5_000_000_000, $SEEK_SET);
817e2dcb 77print BIG "big";
78close BIG;
79
80@s = stat("big");
81
ea2b5ef6 82print "# @s\n";
83
05f8a9f5 84sub fail () {
64215065 85 print "not ";
05f8a9f5 86 $fail++;
87}
88
64215065 89fail unless $s[7] == 5_000_000_003; # exercizes pp_stat
817e2dcb 90print "ok 1\n";
91
64215065 92fail unless -s "big" == 5_000_000_003; # exercizes pp_ftsize
817e2dcb 93print "ok 2\n";
94
ea2b5ef6 95open(BIG, "big") or do { warn "open failed: $!\n"; bye };
817e2dcb 96binmode BIG;
97
6da84e39 98seek(BIG, 4_500_000_000, $SEEK_SET);
817e2dcb 99
05f8a9f5 100fail unless tell(BIG) == 4_500_000_000;
817e2dcb 101print "ok 3\n";
102
6da84e39 103seek(BIG, 1, $SEEK_CUR);
817e2dcb 104
05f8a9f5 105fail unless tell(BIG) == 4_500_000_001;
817e2dcb 106print "ok 4\n";
107
6da84e39 108seek(BIG, -1, $SEEK_CUR);
817e2dcb 109
05f8a9f5 110fail unless tell(BIG) == 4_500_000_000;
817e2dcb 111print "ok 5\n";
112
6da84e39 113seek(BIG, -3, $SEEK_END);
817e2dcb 114
05f8a9f5 115fail unless tell(BIG) == 5_000_000_000;
817e2dcb 116print "ok 6\n";
117
118my $big;
119
05f8a9f5 120fail unless read(BIG, $big, 3) == 3;
817e2dcb 121print "ok 7\n";
122
05f8a9f5 123fail unless $big eq "big";
817e2dcb 124print "ok 8\n";
125
6da84e39 126bye();
817e2dcb 127
05f8a9f5 128if ($fail) {
129 print STDERR <<EOM;
130#
131# If the lfs (large file support) tests fail, it means that
132# the *file system* you are running the tests on doesn't support
133# large files (files larger than two gigabytes). Perl may still
134# be able to support such files, once you have such a file system.
135#
136EOM
137}
138
6da84e39 139# eof