Turn on largefileness always if available and
[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 {
ea2b5ef6 6 chdir 't' if -d 't';
7 unshift @INC, '../lib';
9f8fdb7d 8 # Don't bother if there are no quad offsets.
9 require Config; import Config;
10 if ($Config{lseeksize} < 8) {
64215065 11 print "1..0\n# no 64-bit file offsets\n";
48ea9154 12 exit(0);
9f8fdb7d 13 }
817e2dcb 14}
15
6da84e39 16sub bye {
17 close(BIG);
18 unlink "big";
19 exit(0);
20}
21
fcbfa962 22sub explain {
2d4389e4 23 print <<EOM;
fcbfa962 24#
25# If the lfs (large file support: large meaning larger than two gigabytes)
eed7fde4 26# tests are skipped or fail, it may mean either that your process
27# (or process group) is not allowed to write large files (resource
28# limits) or that the file system you are running the tests on doesn't
29# let your user/group have large files (quota) or the filesystem simply
30# doesn't support large files. You may even need to reconfigure your kernel.
31# (This is all very operating system and site-dependent.)
fcbfa962 32#
33# Perl may still be able to support large files, once you have
eed7fde4 34# such a process, enough quota, and such a (file) system.
fcbfa962 35#
36EOM
37}
38
05f8a9f5 39# Known have-nots.
817e2dcb 40if ($^O eq 'win32' || $^O eq 'vms') {
41 print "1..0\n# no sparse files\n";
6da84e39 42 bye();
43}
44
b18f8161 45# Known haves that have problems running this test
46# (for example because they do not support sparse files, like UNICOS)
47if ($^O eq 'unicos') {
48 print "1..0\n# large files known to work but unable to test them here\n";
49 bye();
50}
51
05f8a9f5 52# Then try to deduce whether we have sparse files.
53
64215065 54# Let's not depend on Fcntl or any other extension.
55
ea2b5ef6 56my ($SEEK_SET, $SEEK_CUR, $SEEK_END) = (0, 1, 2);
6da84e39 57
ea2b5ef6 58# We'll start off by creating a one megabyte file which has
05f8a9f5 59# only three "true" bytes. If we have sparseness, we should
60# consume less blocks than one megabyte (assuming nobody has
61# one megabyte blocks...)
817e2dcb 62
ea2b5ef6 63open(BIG, ">big") or do { warn "open failed: $!\n"; bye };
6da84e39 64binmode BIG;
ea2b5ef6 65seek(BIG, 1_000_000, $SEEK_SET);
6da84e39 66print BIG "big";
817e2dcb 67close(BIG);
68
69my @s;
70
71@s = stat("big");
72
ea2b5ef6 73print "# @s\n";
74
2ef4205b 75my $BLOCKSIZE = $s[11] || 512;
5cec1e3b 76
6da84e39 77unless (@s == 13 &&
ea2b5ef6 78 $s[7] == 1_000_003 &&
6da84e39 79 defined $s[12] &&
5cec1e3b 80 $BLOCKSIZE * $s[12] < 1_000_003) {
ea2b5ef6 81 print "1..0\n# no sparse files?\n";
6da84e39 82 bye();
817e2dcb 83}
84
85# By now we better be sure that we do have sparse files:
86# if we are not, the following will hog 5 gigabytes of disk. Ooops.
87
eed7fde4 88$ENV{LC_ALL} = "C";
89
ea2b5ef6 90open(BIG, ">big") or do { warn "open failed: $!\n"; bye };
817e2dcb 91binmode BIG;
6da84e39 92seek(BIG, 5_000_000_000, $SEEK_SET);
eed7fde4 93
fcbfa962 94# Either the print or (more likely, thanks to buffering) the close will
95# fail if there are are filesize limitations (process or fs).
96my $print = print BIG "big";
97my $close = close BIG if $print;
98unless ($print && $close) {
eed7fde4 99 unless ($print) {
100 print "# print failed: $!\n"
101 } else {
102 print "# close failed: $!\n"
103 }
b948423f 104 if ($! =~/too large/i) {
105 print "1..0\n# writing past 2GB failed: process limits?\n";
106 } elsif ($! =~ /quota/i) {
107 print "1..0\n# filesystem quota limits?\n";
fcbfa962 108 }
56d29690 109 explain();
fcbfa962 110 bye();
111}
817e2dcb 112
113@s = stat("big");
114
ea2b5ef6 115print "# @s\n";
116
ae178db1 117unless ($s[7] == 5_000_000_003) {
118 print "1..0\n# not configured to use large files?\n";
119 explain();
120 bye();
121}
122
05f8a9f5 123sub fail () {
64215065 124 print "not ";
05f8a9f5 125 $fail++;
126}
127
77166d51 128print "1..17\n";
fcbfa962 129
130my $fail = 0;
131
64215065 132fail unless $s[7] == 5_000_000_003; # exercizes pp_stat
817e2dcb 133print "ok 1\n";
134
64215065 135fail unless -s "big" == 5_000_000_003; # exercizes pp_ftsize
817e2dcb 136print "ok 2\n";
137
77166d51 138fail unless -e "big";
139print "ok 3\n";
140
141fail unless -f "big";
142print "ok 4\n";
143
ea2b5ef6 144open(BIG, "big") or do { warn "open failed: $!\n"; bye };
817e2dcb 145binmode BIG;
146
77166d51 147fail unless seek(BIG, 4_500_000_000, $SEEK_SET);
148print "ok 5\n";
817e2dcb 149
05f8a9f5 150fail unless tell(BIG) == 4_500_000_000;
77166d51 151print "ok 6\n";
817e2dcb 152
77166d51 153fail unless seek(BIG, 1, $SEEK_CUR);
154print "ok 7\n";
817e2dcb 155
05f8a9f5 156fail unless tell(BIG) == 4_500_000_001;
77166d51 157print "ok 8\n";
817e2dcb 158
77166d51 159fail unless seek(BIG, -1, $SEEK_CUR);
160print "ok 9\n";
817e2dcb 161
05f8a9f5 162fail unless tell(BIG) == 4_500_000_000;
77166d51 163print "ok 10\n";
817e2dcb 164
77166d51 165fail unless seek(BIG, -3, $SEEK_END);
166print "ok 11\n";
817e2dcb 167
05f8a9f5 168fail unless tell(BIG) == 5_000_000_000;
77166d51 169print "ok 12\n";
817e2dcb 170
171my $big;
172
05f8a9f5 173fail unless read(BIG, $big, 3) == 3;
77166d51 174print "ok 13\n";
817e2dcb 175
05f8a9f5 176fail unless $big eq "big";
77166d51 177print "ok 14\n";
178
179# 705_032_704 = (I32)5_000_000_000
180fail unless seek(BIG, 705_032_704, $SEEK_SET);
181print "ok 15\n";
182
183my $zero;
184
185fail unless read(BIG, $zero, 3) == 3;
186print "ok 16\n";
187
188fail unless $zero eq "\0\0\0";
189print "ok 17\n";
817e2dcb 190
fcbfa962 191explain if $fail;
05f8a9f5 192
77166d51 193bye(); # does the necessary cleanup
e9a694fc 194
290be4b1 195END {
196 unlink "big"; # be paranoid about leaving 5 gig files lying around
197}
198
6da84e39 199# eof