integrate cfgperl contents into mainline
[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
fcbfa962 28sub explain {
2d4389e4 29 print <<EOM;
fcbfa962 30#
31# If the lfs (large file support: large meaning larger than two gigabytes)
2d4389e4 32# tests are skipped or fail, it may mean either that your process is not
33# allowed to write large files or that the file system you are running
34# the tests on doesn't support large files, or both. You may also need
35# to reconfigure your kernel. (This is all very system-dependent.)
fcbfa962 36#
37# Perl may still be able to support large files, once you have
2d4389e4 38# such a process and such a (file) system.
fcbfa962 39#
40EOM
41}
42
05f8a9f5 43# Known have-nots.
817e2dcb 44if ($^O eq 'win32' || $^O eq 'vms') {
45 print "1..0\n# no sparse files\n";
6da84e39 46 bye();
47}
48
05f8a9f5 49# Then try to deduce whether we have sparse files.
50
64215065 51# Let's not depend on Fcntl or any other extension.
52
ea2b5ef6 53my ($SEEK_SET, $SEEK_CUR, $SEEK_END) = (0, 1, 2);
6da84e39 54
ea2b5ef6 55# We'll start off by creating a one megabyte file which has
05f8a9f5 56# only three "true" bytes. If we have sparseness, we should
57# consume less blocks than one megabyte (assuming nobody has
58# one megabyte blocks...)
817e2dcb 59
ea2b5ef6 60open(BIG, ">big") or do { warn "open failed: $!\n"; bye };
6da84e39 61binmode BIG;
ea2b5ef6 62seek(BIG, 1_000_000, $SEEK_SET);
6da84e39 63print BIG "big";
817e2dcb 64close(BIG);
65
66my @s;
67
68@s = stat("big");
69
ea2b5ef6 70print "# @s\n";
71
5cec1e3b 72my $BLOCKSIZE = 512; # is this really correct everywhere?
73
6da84e39 74unless (@s == 13 &&
ea2b5ef6 75 $s[7] == 1_000_003 &&
6da84e39 76 defined $s[12] &&
5cec1e3b 77 $BLOCKSIZE * $s[12] < 1_000_003) {
ea2b5ef6 78 print "1..0\n# no sparse files?\n";
6da84e39 79 bye();
817e2dcb 80}
81
82# By now we better be sure that we do have sparse files:
83# if we are not, the following will hog 5 gigabytes of disk. Ooops.
84
ea2b5ef6 85open(BIG, ">big") or do { warn "open failed: $!\n"; bye };
817e2dcb 86binmode BIG;
6da84e39 87seek(BIG, 5_000_000_000, $SEEK_SET);
fcbfa962 88# Either the print or (more likely, thanks to buffering) the close will
89# fail if there are are filesize limitations (process or fs).
90my $print = print BIG "big";
91my $close = close BIG if $print;
92unless ($print && $close) {
93 $ENV{LC_ALL} = "C";
94 if ($! =~/File too large/) {
95 print "1..0\n# writing past 2GB failed\n";
96 explain();
97 }
98 bye();
99}
817e2dcb 100
101@s = stat("big");
102
ea2b5ef6 103print "# @s\n";
104
05f8a9f5 105sub fail () {
64215065 106 print "not ";
05f8a9f5 107 $fail++;
108}
109
77166d51 110print "1..17\n";
fcbfa962 111
112my $fail = 0;
113
64215065 114fail unless $s[7] == 5_000_000_003; # exercizes pp_stat
817e2dcb 115print "ok 1\n";
116
64215065 117fail unless -s "big" == 5_000_000_003; # exercizes pp_ftsize
817e2dcb 118print "ok 2\n";
119
77166d51 120fail unless -e "big";
121print "ok 3\n";
122
123fail unless -f "big";
124print "ok 4\n";
125
ea2b5ef6 126open(BIG, "big") or do { warn "open failed: $!\n"; bye };
817e2dcb 127binmode BIG;
128
77166d51 129fail unless seek(BIG, 4_500_000_000, $SEEK_SET);
130print "ok 5\n";
817e2dcb 131
05f8a9f5 132fail unless tell(BIG) == 4_500_000_000;
77166d51 133print "ok 6\n";
817e2dcb 134
77166d51 135fail unless seek(BIG, 1, $SEEK_CUR);
136print "ok 7\n";
817e2dcb 137
05f8a9f5 138fail unless tell(BIG) == 4_500_000_001;
77166d51 139print "ok 8\n";
817e2dcb 140
77166d51 141fail unless seek(BIG, -1, $SEEK_CUR);
142print "ok 9\n";
817e2dcb 143
05f8a9f5 144fail unless tell(BIG) == 4_500_000_000;
77166d51 145print "ok 10\n";
817e2dcb 146
77166d51 147fail unless seek(BIG, -3, $SEEK_END);
148print "ok 11\n";
817e2dcb 149
05f8a9f5 150fail unless tell(BIG) == 5_000_000_000;
77166d51 151print "ok 12\n";
817e2dcb 152
153my $big;
154
05f8a9f5 155fail unless read(BIG, $big, 3) == 3;
77166d51 156print "ok 13\n";
817e2dcb 157
05f8a9f5 158fail unless $big eq "big";
77166d51 159print "ok 14\n";
160
161# 705_032_704 = (I32)5_000_000_000
162fail unless seek(BIG, 705_032_704, $SEEK_SET);
163print "ok 15\n";
164
165my $zero;
166
167fail unless read(BIG, $zero, 3) == 3;
168print "ok 16\n";
169
170fail unless $zero eq "\0\0\0";
171print "ok 17\n";
817e2dcb 172
fcbfa962 173explain if $fail;
05f8a9f5 174
77166d51 175bye(); # does the necessary cleanup
e9a694fc 176
6da84e39 177# eof